-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (37 loc) · 981 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
38
39
40
41
42
43
44
45
46
[package]
name = "drss2023-signal-object-controller"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "sender"
path = "src/sender.rs"
[[bin]]
name = "receiver"
path = "src/main.rs"
[[bin]]
name = "old_sender"
path = "src/old_sender.rs"
[[bin]]
name = "old_receiver"
path = "src/old_main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tonic = "0.9"
prost = "0.11"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
futures-core = "0.3"
picontrol = { git = "https://github.com/ctiedt/revpi-tools-rs.git", version = "0.1.0" }
futures-util = "0.3"
async-stream = "0.2"
md5 = "0.7.0"
serde = { version = "1.0", features = ["derive"] }
config-file = "0.2.3"
clokwerk = "0.4.0"
chrono = "0.4.30"
[dependencies.sci-rs]
git = "https://github.com/mese96/rasta-rs"
features = ["rasta"]
[dependencies.rasta-rs]
git = "https://github.com/mese96/rasta-rs"
[build-dependencies]
tonic-build = "0.9"