forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (46 loc) · 1.43 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
[package]
name = "qdrant"
version = "0.6.0"
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" ]
web = ["actix-web"]
service_debug = ["parking_lot", "parking_lot/deadlock_detection"]
consensus = ["raft", "slog", "slog-stdlog", "storage/consensus"]
[dev-dependencies]
tempdir = "0.3.7"
rusty-hook = "^0.11.2"
[dependencies]
parking_lot = { version = "0.12", features=["deadlock_detection"], optional = true }
num_cpus = "1.13"
thiserror = "1.0"
log = "0.4"
env_logger = "0.9.0"
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
schemars = { version = "0.8.8", features = ["uuid"] }
itertools = "0.10"
config = "~0.13.0"
tokio = { version = "~1.17", features = ["full"] }
actix-web = { version = "4.0.1", optional = true }
tonic = "0.7.1"
num-traits = "0.2.14"
prost = "0.10.0"
prost-types = "0.10.0"
raft = { version = "0.6.0", features = ["prost-codec"], default-features = false, optional = true }
slog = { version = "2.7.0", optional = true }
slog-stdlog = { version = "4.1.1", optional = true }
segment = { path = "lib/segment" }
collection = { path = "lib/collection" }
storage = { path = "lib/storage" }
api = { path = "lib/api" }
[[bin]]
name = "schema_generator"
path = "src/schema_generator.rs"
test = false
bench = false
[workspace]
members = ["lib/*"]