-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
21 lines (20 loc) · 892 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "unifeb"
version = "0.1.1"
edition = "2021"
keywords = ["UniFrac", "embedding", "dimension reduction", "microbiome"]
[dependencies]
rayon = "1.10"
ndarray = "0.16"
clap = "4.3"
log = { version = "0.4" }
env_logger = { version = "0.11" }
##anndists = {path = "../anndists"}
anndists = {git = "https://github.com/jianshu93/anndists"}
anyhow = { version = "1.0.58" }
csv = { version = "1.1" }
annembed = {git = "https://github.com/jianshu93/annembed", default-features = false, features = ["simdeez_f", "intel-mkl-static"]}
#annembed = { path = "../annembed", default-features = false, features = ["simdeez_f", "intel-mkl-static"]}
#hnsw_rs = {git = "https://github.com/jean-pierreBoth/hnswlib-rs", features = ["simdeez_f"]}
#hnsw_rs = {path = "../hnswlib-rs-new", features = ["simdeez_f"]}
hnsw_rs = {git = "https://github.com/jianshu93/hnswlib-rs", features = ["simdeez_f"]}