-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (27 loc) · 897 Bytes
/
Cargo.toml
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
[package]
name = "ppknn"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
authors = ["Kelong Cong <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3"
clap = { version = "4.2", features = ["derive"] }
dyn-stack = "0.8.3" # must match the version in tfhe-rs
rand = "0.8.5"
rayon = "1.7.0"
csv = "1.3"
[target.'cfg(windows)'.dependencies]
tfhe = { git = "https://github.com/kc1212/tfhe-rs", branch = "expose-sk", features = ["boolean", "shortint", "x86_64"] }
[target.'cfg(unix)'.dependencies]
tfhe = { git = "https://github.com/kc1212/tfhe-rs", branch = "expose-sk", features = ["boolean", "shortint", "x86_64-unix"] }
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
rand = "0.8"
criterion = "0.5.1"
[[bench]]
name = "my_benchmark"
harness = false