forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (39 loc) · 904 Bytes
/
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
[package]
name = "qdrant"
version = "0.2.1"
authors = ["Andrey Vasnetsov <[email protected]>"]
edition = "2018"
doctest = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
tempdir = "0.3.7"
criterion = "0.3"
[dependencies]
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"
actix-web = "3"
tokio = {version = "~0.3", features = ["full"]}
segment = {path = "lib/segment"}
collection = {path = "lib/collection"}
storage = {path = "lib/storage"}
[[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/*"]