aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorKablersalat <crt@adastra7.net>2025-06-05 00:14:27 +0200
committerKablersalat <crt@adastra7.net>2025-06-05 00:14:27 +0200
commita0c754fc727a35d775c25857898986f4273db0a5 (patch)
tree4129d20013ff0a9b80051c0d9a74484cd753b633 /Cargo.toml
parentfd956fde0ba92b4aa7b0f5322cfb93951bb01fbb (diff)
Imported and sanetized dev server to publish on gitterHEADmaster
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml33
1 files changed, 33 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..b6b6e8e
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,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"