-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (43 loc) · 1.19 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
[package]
name = "steward"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# gRPC
tonic = "0.6"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
tokio-stream = { version = "0.1", features = ["net"] }
socket2 = { version = "0.4", features = ["all"] }
# http
reqwest = { version = "0.11", features = ["json"] }
# Database
redis = { version = "0.23", features = ["tokio-comp", "r2d2"] }
r2d2 = "0.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Protobufs
prost = "0.9"
prost-types = "0.9"
# Parallelism
rayon = "1"
crossbeam = "0.8"
# Reading config from disk
config = "0.13"
# Logging
log = { version = "0.4", features = ["max_level_debug", "release_max_level_info"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = {version = "0.3", features = ["json", "env-filter"]}
# Metrics
cadence = "0.29"
[build-dependencies]
tonic-build = "0.6"
regex = "1.5"
zip = "0.6"
rayon = "1.5"
fs_extra = "1.2"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"