forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
78 lines (63 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "qdrant"
version = "0.9.1"
authors = ["Andrey Vasnetsov <[email protected]>"]
edition = "2021"
doctest = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "web", "parking_lot" ]
web = ["actix-web"]
service_debug = ["parking_lot", "parking_lot/deadlock_detection"]
[dev-dependencies]
tempfile = "3.3.0"
rusty-hook = "^0.11.2"
[dependencies]
parking_lot = { version = "0.12.1", features=["deadlock_detection"], optional = true }
num_cpus = "1.13"
thiserror = "1.0"
log = "0.4"
env_logger = "0.9.0"
atty = "0.2"
colored = "2"
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
chrono = { version = "~0.4", features = ["serde"] }
schemars = { version = "0.8.10", features = ["uuid1", "preserve_order", "chrono"] }
itertools = "0.10"
anyhow = "1.0.62"
futures = "0.3.23"
futures-util = "0.3.21"
clap = { version = "3.2.17", features = ["derive"] }
serde_cbor = { version = "0.11.2"}
uuid = { version = "1.1", features = ["v4", "serde"] }
sys-info = "0.9.1"
config = "~0.13.2"
tokio = { version = "~1.20", features = ["full"] }
actix-web = { version = "4.1.0", optional = true }
actix-cors = "0.6.2"
actix-files = "0.6.2"
tonic = "0.7.2"
tower = "0.4.13"
tower-layer = "0.3.1"
num-traits = "0.2.15"
tar = "0.4.38"
# Consensus related crates
raft = { git = "https://github.com/tikv/raft-rs", rev = "52d84aac8734369d81c2d77413ea3ab8e58e0af9", features = ["prost-codec"], default-features = false }
slog = "2.7.0"
slog-stdlog = "4.1.1"
prost = "=0.9.0"
raft-proto = { git = "https://github.com/tikv/raft-rs", rev = "52d84aac8734369d81c2d77413ea3ab8e58e0af9", features = ["prost-codec"], default-features = false}
segment = { path = "lib/segment" }
collection = { path = "lib/collection" }
storage = { path = "lib/storage" }
api = { path = "lib/api" }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"
[[bin]]
name = "schema_generator"
path = "src/schema_generator.rs"
test = false
bench = false
[workspace]
members = ["lib/*"]