chore(all): remove the dependency to lazy_static

This commit is contained in:
Nicolas Sarlin
2024-12-13 16:31:12 +01:00
committed by Nicolas Sarlin
parent 3a99ee9718
commit 381aeb572f
8 changed files with 20 additions and 35 deletions

View File

@@ -24,7 +24,6 @@ rust-version = "1.83"
[dev-dependencies]
rand = { workspace = true }
rand_distr = "0.4.3"
lazy_static = { version = "1.4.0" }
criterion = "0.5.1"
doc-comment = "0.3.3"
serde_json = "1.0.94"
@@ -58,7 +57,6 @@ tfhe-csprng = { version = "0.4.1", path = "../tfhe-csprng", features = [
"generator_fallback",
"parallel",
] }
lazy_static = { version = "1.4.0", optional = true }
serde = { workspace = true, features = ["default", "derive"] }
rayon = { workspace = true }
bincode = "1.3.3"
@@ -96,7 +94,7 @@ boolean = []
shortint = ["dep:sha3"]
integer = ["shortint"]
strings = ["integer"]
internal-keycache = ["dep:lazy_static", "dep:fs2"]
internal-keycache = ["dep:fs2"]
gpu = ["dep:tfhe-cuda-backend"]
zk-pok = ["dep:tfhe-zk-pok"]