forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (69 loc) · 2.33 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
79
80
81
82
83
84
85
86
[package]
name = "qdrant"
version = "1.1.0"
authors = ["Andrey Vasnetsov <andrey@vasnetsov.com>"]
edition = "2021"
# 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]
serde_urlencoded = "0.7"
tempfile = "3.4.0"
rusty-hook = "^0.11.2"
[dependencies]
parking_lot = { version = "0.12.1", features=["deadlock_detection"], optional = true }
num_cpus = "1.15"
thiserror = "1.0"
log = "0.4"
env_logger = "0.10.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.12", features = ["uuid1", "preserve_order", "chrono"] }
itertools = "0.10"
anyhow = "1.0.69"
futures = "0.3.27"
futures-util = "0.3.27"
clap = { version = "4.1.8", features = ["derive"] }
serde_cbor = { version = "0.11.2"}
uuid = { version = "1.3", features = ["v4", "serde"] }
sys-info = "0.9.1"
config = "~0.13.3"
tokio = { version = "~1.26", features = ["full"] }
actix-web = { version = "4.3.1", optional = true }
actix-cors = "0.6.4"
actix-files = "0.6.2"
tonic = { version = "0.8.3", features = ["gzip"] }
tower = "0.4.13"
tower-layer = "0.3.2"
num-traits = "0.2.15"
tar = "0.4.38"
reqwest = { version = "0.11", features = ["stream", "rustls-tls", "blocking"] }
openssl = { version = "0.10", features = ["vendored"] }
prometheus = { version = "0.13.3", default-features = false }
# Consensus related crates
raft = { git = "https://github.com/tikv/raft-rs", rev = "5ce52b480065ff31ecef16b9b77c7c3b7c57c8c7", features = ["prost-codec"], default-features = false }
slog = "2.7.0"
slog-stdlog = "4.1.1"
prost = "0.11.8"
raft-proto = { git = "https://github.com/tikv/raft-rs", rev = "5ce52b480065ff31ecef16b9b77c7c3b7c57c8c7", 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/*"]
exclude = ["benches/search-points"]
[profile.release]
lto = "fat"