chore(hpu): fix Cargo.toml for release

This commit is contained in:
Nicolas Sarlin
2025-05-19 16:20:56 +02:00
committed by Nicolas Sarlin
parent 9131aaa383
commit 99a27c1cbe

View File

@@ -8,7 +8,7 @@ homepage = "https://www.zama.ai/"
documentation = "https://docs.zama.ai/tfhe-rs"
repository = "https://github.com/zama-ai/tfhe-rs"
readme = "README.md"
keywords = ["fully", "homomorphic", "encryption", "fhe", "cryptography", "hardware", "fpga"]
keywords = ["encryption", "fhe", "cryptography", "hardware", "fpga"]
[features]
hw-xrt = []
@@ -30,7 +30,7 @@ enum_dispatch = "0.3.13"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
toml = { version = "0.8.*", features = [] }
toml = { version = "0.8", features = [] }
paste = "1.0.15"
thiserror = "1.0.61"
bytemuck = "1.16.0"
@@ -49,16 +49,16 @@ rayon = { workspace = true }
ipc-channel = "0.18.3"
# Dependencies used for debug feature
num-traits = { version = "*", optional = true }
num-traits = { version = "0.2", optional = true }
clap = { version = "4.4.4", features = ["derive"], optional = true }
clap-num = { version = "1.1.1", optional = true }
nix = { version = "0.29.0", features = ["ioctl", "uio"] }
# Dependencies used for rtl_graph features
dot2 = { version = "*", optional = true }
dot2 = { version = "1.0", optional = true }
bitvec = { version = "*", optional = true }
serde_json = { version = "*", optional = true }
bitvec = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
# Binary for manual debugging
# Enable to access Hpu register and drive some custom sequence by hand