-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 878 Bytes
/
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 = "als-rs"
version = "0.1.0"
authors = ["Maxim Ivanitskiy <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "als-rs"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/client.rs"
# build = "src/build.rs"
[dependencies]
tonic = { version = "0.6.0", features = ["prost"] }
prost = "0.9.0"
prost-types = "0.9"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tower-http = { version = "0.2.0", features = ["trace"] }
tracing = "0.1.29"
serde_json = "1.0.72"
serde = { version ="1.0.130", features = ["derive"] }
signal-hook = "0.3.12"
kafka = "0.8.0"
log = "0.4.0"
env_logger = "0.9.0"
rdkafka = { version = "0.28.0" }
clap = "2.34.0"
chrono = "0.4.19"
[build-dependencies]
tonic-build = { version = "0.6.0", features = ["prost"]}