-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (50 loc) · 1.23 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
54
55
56
57
[package]
name = "prism"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3"
bytes = "1.1"
exitcode = "1.1"
futures = "0.3"
prost = "0.10"
prost-types = "0.10"
rand = "0.8"
serde = "1.0"
serde_bytes = "0.11"
serde_derive = "1.0"
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
sled = "0.34"
slog = { version = "2.7", features = ["nested-values"] }
slog-async = { version = "2.7", features = ["nested-values"] }
slog-json = { version = "2.4", features = ["nested-values"] }
slog-term = { version = "2.8", features = ["nested-values"] }
structopt = "0.3"
thiserror = "1.0"
tokio = { version = "1.19", features = ["rt-multi-thread", "macros", "time", "sync"] }
tonic = "0.7"
tonic-reflection = "0.4"
tonic-health = "0.6"
uuid = { version = "1.1", features = ["v4"] }
[dev-dependencies]
mockall = "0.11"
rstest = "0.15"
tokio-test = "0.4"
lazy_static = "1.4"
[build-dependencies]
tonic-build = "0.7"
[lib]
name = "libprism"
path = "src/lib.rs"
[[bin]]
name = "prismd"
path = "src/bin/prismd.rs"
test = false
bench = false
[[bin]]
name = "prismctl"
path = "src/bin/prismctl.rs"
test = false
bench = false