-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 1.01 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
[package]
name = "raft-rs"
version = "0.1.0"
authors = ["Isitha Subasinghe <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.10.0"
actix-web = "3.3.2"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
tokio = { version = "1", features = ["full", "rt", "net", "parking_lot", "signal", "sync", "time"] }
futures = { version = "0.3.12", features = ["thread-pool"]}
tracing = "0.1.22"
tracing-subscriber = { version = "0.2.15", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log"] }
tracing-futures = "0.2.4"
tonic = "0.4"
prost = "0.7"
hashbrown = "0.9.1"
crossbeam-channel = "0.5.0"
kv = "0.22.0"
serde = "1.0.122"
bincode = "1.3.1"
clap = "3.0.0-beta.2"
serde_json = "1.0.61"
rand = "0.8.3"
[build-dependencies]
tonic-build = "0.4"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.3.2"
[profile.release]
lto = "fat"
codegen-units = 1