From a0c754fc727a35d775c25857898986f4273db0a5 Mon Sep 17 00:00:00 2001 From: Kablersalat Date: Thu, 5 Jun 2025 00:14:27 +0200 Subject: Imported and sanetized dev server to publish on gitter --- Cargo.toml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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" -- cgit v1.2.3-70-g09d2