-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 781 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 781 Bytes
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
[package]
name = "chiselstore"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-notify = "0.2.0"
async-trait = "0.1.52"
async-mutex = "1.4.0"
crossbeam-channel = "0.5.1"
crossbeam = "0.8.1"
derivative = "2.2.0"
little_raft = "0.1.6"
prost = "0.8.0"
sqlite = "0.26.0"
thiserror = "1.0.30"
tokio = { version = "1.11.0", features = ["full"] }
tonic = "0.5.2"
rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
madsim = { git = "https://github.com/madsys-dev/madsim", rev = "de5bd83" }
futures = "0.3"
[build-dependencies]
tonic-build = "0.5.2"
[dev-dependencies]
anyhow = { version = "1.0.45", features = ["backtrace"] }
structopt = "0.3.25"