mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-08 22:28:01 -05:00
25 lines
617 B
TOML
25 lines
617 B
TOML
[package]
|
|
name = "tfhe-trivium"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rayon = { version = "1.7.0"}
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies.tfhe]
|
|
path = "../../tfhe"
|
|
features = [ "boolean", "shortint", "integer", "x86_64" ]
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies.tfhe]
|
|
path = "../../tfhe"
|
|
features = [ "boolean", "shortint", "integer", "aarch64-unix" ]
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5.1", features = [ "html_reports" ]}
|
|
|
|
[[bench]]
|
|
name = "trivium"
|
|
harness = false
|