Skip to content
Open
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
33 changes: 24 additions & 9 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
Expand Up @@ -18,7 +18,7 @@ serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
simplelog = "0.12"
ddc = "0.2"
ddc = "0.3"
Copy link

Copilot AI Jan 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The project does not directly use the ddc crate - it only uses ddc-hi. Adding a direct dependency on ddc 0.3.0 creates a situation where both ddc 0.2.2 (via ddc-hi 0.4.1) and ddc 0.3.0 (direct dependency) are in the dependency tree. Consider removing the direct ddc dependency from Cargo.toml, as it's not used by the codebase and only adds unnecessary bloat.

Suggested change
ddc = "0.3"

Copilot uses AI. Check for mistakes.
ddc-hi = "0.4"
rusb = "0.9"
shell-words = "1.1"
Expand Down