Skip to content

Commit 909f131

Browse files
kixelatedclaude
andcommitted
fix(moq-video): mark unpublishable so cargo-deny accepts the cros-codecs git dep
dev's #1720 added cros-codecs as a git dependency for the `vaapi` feature, which cargo-deny's wildcard lint bans for published crates (crates.io disallows git deps). moq-video can't be published to crates.io with that dep anyway, so `publish = false` is the honest fix and lets `allow-wildcard-paths` exempt the dep. Revert once the cros-codecs fork is published to crates.io under its own name. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 92e88c4 commit 909f131

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

rs/moq-video/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ license = "MIT OR Apache-2.0"
88
version = "0.0.3"
99
edition = "2024"
1010
rust-version.workspace = true
11+
# Not publishable to crates.io while the `vaapi` feature pulls cros-codecs from
12+
# git; flip back once that fork is published (tracked separately). This also lets
13+
# cargo-deny's allow-wildcard-paths exempt the git dep, which it only does for
14+
# unpublished crates.
15+
publish = false
1116

1217
keywords = ["quic", "http3", "webtransport", "media", "video"]
1318
categories = ["multimedia", "multimedia::video", "multimedia::encoding"]

0 commit comments

Comments
 (0)