Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ jobs:
--include-features rustls-tls-native-roots
--exclude-features native-tls,rustls-tls-webpki-roots

- name: Check discovery features (Linux only)
if: runner.os == 'Linux'
run: >
cargo hack check -p librespot-discovery --each-feature --exclude-all-features
--include-features native-tls
--exclude-features rustls-tls-native-roots,rustls-tls-webpki-roots

- name: Build binary with default features
run: cargo build --frozen

Expand Down
2 changes: 1 addition & 1 deletion discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition.workspace = true
default = ["with-libmdns", "native-tls"]

# Discovery backends
with-avahi = ["dep:serde", "dep:zbus"]
with-avahi = ["dep:serde", "dep:zbus", "futures-util/async-await-macro"]
with-dns-sd = ["dep:dns-sd"]
with-libmdns = ["dep:libmdns"]

Expand Down