forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (54 loc) · 1.65 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
[package]
name = "qdrant"
version = "0.4.2"
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"]
grpc = ["tonic", "tonic-build", "prost", "num-traits"]
service_debug = ["parking_lot", "parking_lot/deadlock_detection"]
[dev-dependencies]
tempdir = "0.3.7"
criterion = "0.3"
[dependencies]
parking_lot = { version = "0.11", features=["deadlock_detection"], optional = true }
num_cpus = "1.0"
thiserror = "1.0"
log = "0.4"
env_logger = "0.7.1"
rand = "0.7.3"
serde = { version = "~1.0", features = ["derive"] }
serde_yaml = "~0.8"
serde_json = "~1.0"
schemars = "0.8.0"
itertools = "0.9"
config = "~0.10.1"
tokio = { version = "~1.14", features = ["full"] }
actix-web = { version = "4.0.0-beta.8", optional = true }
tonic = { version = "0.5.0", optional = true }
num-traits = { version = "0.2.14", optional = true }
prost = { version = "0.8", optional = true }
segment = { path = "lib/segment" }
collection = { path = "lib/collection" }
storage = { path = "lib/storage" }
[build-dependencies]
tonic-build = { version = "0.5.0", features = ["prost"], optional = true }
[patch.crates-io]
# Env flag OPENBLAS_DYNAMIC_ARCH is implemented in this custom fork
# Which allows to build openblas with dynamic CPU architecture selection
openblas-src = { git = "https://github.com/qdrant/openblas-src.git" }
[[bin]]
name = "schema_generator"
path = "src/schema_generator.rs"
test = false
bench = false
[[bin]]
name = "cli"
path = "src/cli.rs"
test = false
bench = false
[workspace]
members = ["lib/*"]