forked from chadeLin/chubaodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (48 loc) · 1.11 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
[package]
name = "chubaodb"
version = "0.1.0"
description = "A distributed document database on top of ChubaoFS"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
authors = ["The Chubao Authors"]
[[bin]]
name = "chubaodb"
path = "src/main.rs"
doc = false
[dependencies]
log = "0.4.8"
log4rs = "0.12.0"
clap = "2.33.1"
chrono = "0.4.13"
backtrace = "0.3"
toml = "0.5.6"
actix-web = "2.0.0"
async-trait = "0.1.36"
async-graphql = "1.16.6"
async-graphql-actix-web = "1.16.6"
actix-rt = "1.1.1"
http = "0.2.1"
tonic = { version = "0.3.0", features = ["tls"] }
async-std = { version = "1.6.2", features = ["default", "unstable"]}
prost = "0.6.1"
serde = { version = "1.0.114" }
serde_derive = "1.0.114"
serde_json = "1.0.56"
base64 = "0.12.3"
surf = "1.0.3"
git-version = "0.3.4"
uuid = { version = "0.8", features = ["v4"] }
itertools = "0.9.0"
rocksdb = { version = "0.14.0", features = ["lz4"] }
tantivy = "0.12.0"
raft4rs = "0.1.1"
rand = "0.7.3"
roaring = "0.6.0"
num_enum = "0.5.0"
faiss4rs = {version = "1.6.307" , optional = true}
[build-dependencies]
tonic-build = "0.3.0"
[features]
default = []
vector = ["faiss4rs"]