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
1 change: 1 addition & 0 deletions .changepacks/changepack_log_7IqVlY7ccSVP-seMz3MIB.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"changes":{"crates/cli/Cargo.toml":"Patch","crates/core/Cargo.toml":"Patch","crates/node/Cargo.toml":"Patch","crates/rust/Cargo.toml":"Patch","bridge/node/package.json":"Patch","bridge/python/pyproject.toml":"Patch","crates/python/Cargo.toml":"Patch"},"note":"Fix js path","date":"2026-04-08T11:03:05.074030400Z"}
12 changes: 6 additions & 6 deletions Cargo.lock

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

18 changes: 16 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
[workspace]
resolver = "3"
members = ["crates/*", "bridge/*"]
# bridge/python is built separately via `maturin build` in the build script.
# Excluding it from default-members avoids a bin target name collision with
# crates/cli (both produce `dependency-check-updates.exe`), which caused
# parallel linker processes to race on the same output file (LNK1104).
# `members` still contains bridge/* so workspace-wide commands
# (`cargo test --workspace`, `cargo clippy --workspace`) keep covering it.
default-members = ["crates/cli", "crates/core", "crates/node", "crates/rust", "crates/python", "bridge/node"]

[workspace.package]
edition = "2024"
rust-version = "1.85"
license = "MIT"
repository = "https://github.com/dev-five-git/dependency-check-updates"
homepage = "https://github.com/dev-five-git/dependency-check-updates"
documentation = "https://github.com/dev-five-git/dependency-check-updates"
readme = "README.md"
keywords = ["dependency", "update", "cargo", "npm", "ncu"]
categories = ["development-tools"]

[workspace.dependencies]
# Internal
# Internal — `version` is required so `cargo publish` can resolve path
# dependencies against crates.io. When bumping any crate version, remember
# to update these entries in lockstep.
dependency-check-updates-core = { path = "crates/core" }
dependency-check-updates-node = { path = "crates/node" }
dependency-check-updates-rust = { path = "crates/rust" }
dependency-check-updates-python = { path = "crates/python" }
dependency-check-updates = { path = "crates/cli" }
dependency-check-updates-testkit = { path = "crates/testkit" }

# External
clap = { version = "4.6", features = ["derive"] }
Expand Down
Loading