aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"