Skip to content

Commit 8c729e8

Browse files
UnbreakableMJclaude
andcommitted
fix(fs): pin path dep to a version to satisfy cargo-deny wildcard rule
cargo-deny treats `pearlite-schema = { path = "..." }` as a wildcard dep because no version constraint is present. The workspace lints have `wildcards = "deny"`. Pinning to "0.1" matches workspace.package.version (0.1.0) and the workspace SemVer baseline. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 594137f commit 8c729e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/pearlite-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repository.workspace = true
1212
workspace = true
1313

1414
[dependencies]
15-
pearlite-schema = { path = "../pearlite-schema" }
15+
pearlite-schema = { path = "../pearlite-schema", version = "0.1" }
1616
sha2 = { workspace = true }
1717
tempfile = { workspace = true }
1818
thiserror = { workspace = true }

0 commit comments

Comments
 (0)