-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 985 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "tfhe-csprng"
version = "0.9.0"
edition = "2021"
license = "BSD-3-Clause-Clear"
description = "Cryptographically Secure PRNG used in the TFHE-rs library."
homepage = "https://zama.org/"
documentation = "https://docs.zama.org/tfhe-rs"
repository = "https://github.com/zama-ai/tfhe-rs"
readme = "README.md"
keywords = ["fully", "homomorphic", "encryption", "fhe", "cryptography"]
rust-version.workspace = true
[dependencies]
aes = "0.8.2"
rayon = { workspace = true, optional = true }
getrandom = { workspace = true }
serde = "1.0.226"
tfhe-versionable = { version = "0.7.0", path = "../utils/tfhe-versionable" }
[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2.133"
[dev-dependencies]
rand = { workspace = true }
criterion = "0.5.1"
clap = "=4.5.30"
ctr = "0.9.2"
[features]
parallel = ["rayon"]
software-prng = []
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[[example]]
name = "generate"
path = "examples/generate.rs"