-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 897 Bytes
/
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
[package]
name = "hugedict"
version = "1.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "hugedict"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
postcard = { version = "1.0.8", features = ["alloc"] }
bzip2 = "0.4.4"
env_logger = "0.10.0"
flate2 = { version = "1.0.28", features = [
"zlib-ng",
], default-features = false }
indicatif = { version = "0.17.7", features = ["rayon"] }
log = "0.4.20"
nng = "1.0.1"
pyo3 = { version = "0.19.2", features = ["anyhow"] }
pythonize = "0.19.0"
rayon = "1.8.0"
rocksdb = "0.21.0"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.49"
zstd = "0.13.2"
[dev-dependencies]
rstest = "0.18.2"
tempfile = "3.8.0"
[features]
extension-module = ["pyo3/extension-module"]