-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (63 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
73 lines (63 loc) · 1.48 KB
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
65
66
67
68
69
70
71
72
73
[package]
name = "sparse_index"
version = "0.1.0"
authors = ["MochiXu <mochi_xu@icloud.com>", "Libao Yang <libaoyang1997@gmail.com>"]
edition = "2021"
rust-version = "1.79"
[lib]
name = "sparse_index" # library name
# crate-type = ["cdylib", "staticlib", "lib"]
crate-type = ["staticlib", "rlib"]
[dependencies]
ordered-float = "4.2"
half = "=2.4.1"
itertools = "0.13.0"
validator = "0.18.1"
rand = "0.8.5"
memmap2 = "0.9.4"
serde_json = "1.0.122"
log = "0.4.22"
serde = { version = "1.0.205", features = ["derive"] }
parking_lot = "0.12.3"
atomicwrites = "0.4.3"
bincode = "1.3.3"
thiserror = "1.0.63"
semver = "1.0.23"
bitpacking = "0.9.2"
tempfile = "3.12.0"
lazy_static = "1.5.0"
num_cpus = "1.16.0"
schemars = "0.8.21"
chrono = "0.4.38"
atomic_refcell = "0.1.13"
cxx = "1.0.119"
once_cell = "1.19.0"
generic-tests = "0.1.2"
flurry = "0.3"
log4rs = "1.2.0"
env_logger = "0.10"
rayon = "1.9.0"
census = "0.4.2"
uuid = { version = "1.7.0", features = ["v4", "serde"] }
oneshot = "0.1.6"
futures = "0.3.30"
crossbeam-channel = "0.5.4"
smallvec = "1.8.0"
fs4 = "0.8.0"
crc32fast = "1.3.2"
fnv = "1.0.7"
measure_time = "0.8.2"
arc-swap="1.7.0"
sparse-bitpacker = { version= "0.1.0", path="./bitpacker" }
common = { version= "0.1.0", path = "./common/", package = "sparse-common" }
enum_dispatch = "0.3.13"
typed-builder = "0.20.0"
proc-macro2 = "=1.0.79"
url = "=2.4.1"
[build-dependencies]
cxx-build = "1.0.119"
[profile.release]
debug = true
[profile.relwithdebinfo]
inherits = "release"
debug = true