Files
hfe_knn/Cargo.toml
sangge c2d423445d fix: correct run.sh script parameters and disable HNSW code (v0.3.1)
- Fix syntax error in run.sh: remove extra quote and correct --log-path to --log-file
- Comment out HNSW algorithm implementation in enc.rs and algorithms.rs to simplify codebase
- Bump version to 0.3.1 in Cargo.toml
- Remove HNSW implementation guide and test files
- Add comprehensive project writeup documentation
2025-08-06 21:40:12 +08:00

18 lines
383 B
TOML

[package]
name = "hfe_knn"
version = "0.3.1"
edition = "2024"
[dependencies]
tfhe = { version = "1", features = ["integer"] }
serde = { version = "1", features = ["derive"] }
anyhow = "1"
rand = "0.9"
clap = { version = "4.5", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
bincode = "2.0"
log = "0.4"
env_logger = "0.11"
rayon = "1.10"