blob: b6b6e8ef28184942d8f4d12036d9a81969230b13 (
plain)
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
|
[package]
name = "multicast_relay"
version = "1.0.0"
edition = "2021"
description = "Multicast traffic relay system"
# Note: Requires C compiler toolchain (build-essential on Debian/Ubuntu)
[[bin]]
name = "castrepeat-server"
path = "src/bin/server.rs"
[[bin]]
name = "castrepeat-client"
path = "src/bin/client.rs"
[[bin]]
name = "castrepeat-mcast-test"
path = "src/bin/mcast_test.rs"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.7"
clap = { version = "4.3", features = ["derive"] }
anyhow = "1.0"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
log = "0.4"
env_logger = "0.10"
socket2 = "0.5"
rand = "0.8"
|