-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.04 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
[package]
name = "crabedb"
version = "0.1.0"
authors = ["Gabriel Mougard <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.8.3"
# Extremely fast Hash algorithm, running at RAM speed limits.
twox-hash = "1.6.0"
# CLI parsing
clap = "2.33.0"
# Basic logging
log = "0.4"
# gRPC client/server logic
tonic = {version = "0.4", features = ["tls"] }
prost = "0.7"
futures-core = "0.3"
futures-util = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio-stream = "0.1"
async-stream = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.7"
# For the storage engine
byteorder = "1.2"
fs2 = "~0.4.1"
lazy_static = "1.4.0"
regex = "~0.2.1"
time = "~0.1.37"
[build-dependencies]
tonic-build = "0.4"
[lib]
name = "crabedb"
path = "src/crabedb/lib.rs"
[[bin]]
name = "crabedb-server"
path = "src/bin/server.rs"
[[bin]]
name = "crabedb-client"
path = "src/bin/client.rs"