Skip to content

Commit

Permalink
fix macos mdns issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asg0451 committed Apr 15, 2024
1 parent 6c08f4c commit 71fcc8e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]

resolver = "2"
members = ["forwarder", "receiver", "player", "protocol", "common"]
6 changes: 6 additions & 0 deletions forwarder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ rand = "0.8.5"
protocol = { path = "../protocol" }
common = { path = "../common" }
once_cell = "1.17.2"

# enable this feature on macos so we don't bork the built-in mdns stuff
[target.'cfg(target_os = "macos")'.dependencies]
librespot = { version = "0.4.2", default_features = false, features = [
"with-dns-sd",
] }
1 change: 0 additions & 1 deletion receiver/src/bot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use crate::creds_registry::CredsRegistry;
#[derive(Debug, Parser, Clone)]
pub struct BotOptions {
#[clap(
short,
long,
env,
default_value = "player",
Expand Down

0 comments on commit 71fcc8e

Please sign in to comment.