diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-27 22:01:49 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-27 22:02:01 +0200 |
commit | fb83d18865fcefbddb6fc9855c7a91cbe45f6d41 (patch) | |
tree | 90cef2eecab0275e2418608186e5e03d96ccce63 /server/discover/Cargo.toml | |
parent | 6ffcb0e03a6c2af11547de900eed1f542bc0b40b (diff) | |
download | hurrycurry-fb83d18865fcefbddb6fc9855c7a91cbe45f6d41.tar hurrycurry-fb83d18865fcefbddb6fc9855c7a91cbe45f6d41.tar.bz2 hurrycurry-fb83d18865fcefbddb6fc9855c7a91cbe45f6d41.tar.zst |
mdns discovery program
Diffstat (limited to 'server/discover/Cargo.toml')
-rw-r--r-- | server/discover/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/server/discover/Cargo.toml b/server/discover/Cargo.toml new file mode 100644 index 00000000..8ebdef8f --- /dev/null +++ b/server/discover/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "hurrycurry-discover" +version = "0.1.0" +edition = "2021" + +[dependencies] +mdns-sd = "0.11.4" +env_logger = "0.11.5" +log = "0.4.22" +anyhow = "1.0.89" +hyper = { version = "1.4.1", default-features = false, features = [ + "server", + "http1", +] } +tokio = { version = "1.40.0", features = ["full"] } +http-body-util = "0.1" +hyper-util = { version = "0.1", features = ["full"] } +hurrycurry-protocol = { path = "../protocol" } +serde_json = "1.0.128" |