mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-14 07:17:57 -05:00
27 lines
697 B
TOML
27 lines
697 B
TOML
[package]
|
|
name = "tfhers_utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
bincode = "1.3.3"
|
|
serde = "1"
|
|
serde_json = "1.0.128"
|
|
|
|
clap = { version = "4.5.16", features = ["derive"] }
|
|
|
|
concrete_quantizer = { git = "https://github.com/zama-ai/concrete-ml-processing-rs" }
|
|
ndarray = "0.16.1"
|
|
|
|
tfhe = { version = "0.10.0", features = ["integer"] }
|
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
|
tfhe = { version = "0.10.0", features = ["integer", "x86_64-unix"] }
|
|
|
|
[target.aarch64-unknown-linux-gnu.dependencies]
|
|
tfhe = { version = "0.10.0", features = ["integer", "aarch64-unix"] }
|
|
|
|
[target.x86_64-pc-windows-gnu.dependencies]
|
|
tfhe = { version = "0.10.0", features = ["integer", "x86_64"] }
|