forked from URI-ABD/clam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (58 loc) · 1.65 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
members = [
"crates/abd-clam",
"crates/distances",
"crates/symagen",
"crates/results/cakes",
"crates/results/chaoda",
"crates/results/rite-solutions",
"crates/results/msa",
"pypi/distances",
"benches/utils",
"benches/cakes",
]
resolver = "2"
[workspace.dependencies]
abd-clam = { version = "0.32.0", path = "crates/abd-clam" }
distances = { version = "1.8.0", path = "crates/distances" }
symagen = { version = "0.5.0", path = "crates/symagen" }
rayon = "1.8"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
# bitcode = { version = "0.5" }
bitcode = { git = "https://github.com/nishaq503/bitcode.git", rev = "1c393ad97288555fc3fe41b292b2bd826486a992" }
libm = "0.2"
ndarray = { version = "0.16", features = ["rayon", "approx"] }
ndarray-npy = "0.9"
csv = { version = "1.3.0" }
flate2 = { version = "1.0" }
# For GCD and LCM calculations.
num-integer = "0.1"
# For reading fasta files.
bio = "2.0"
# For a faster implementation of Levenshtein distance.
stringzilla = "3.10"
# For CLI tools
clap = { version = "4.5", features = ["derive"] }
# For low-latency logging from multiple threads.
ftlog = { version = "0.2" }
# For reading and writing HDF5 files.
hdf5 = { package = "hdf5-metno", version = "0.9.0" }
# For Python Wrappers
numpy = "0.23"
pyo3 = { version = "0.23", features = ["extension-module", "abi3-py39"] }
pyo3-ffi = { version = "0.23", features = ["extension-module", "abi3-py39"] }
[profile.test]
opt-level = 3
debug = true
overflow-checks = true
[profile.release]
# debug = true
opt-level = 3
strip = true
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = true
overflow-checks = true