Skip to content
Closed
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
2 changes: 1 addition & 1 deletion open-build-service-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ futures = "0.3.14"
bytes = "1.0.1"
base16ct = { version = "0.1", features = ["std"] }
md-5 = "0.10"
strum_macros = "0.23"
strum_macros = "0.27"

[dev-dependencies]
open-build-service-mock = { path = "../open-build-service-mock" }
Expand Down
2 changes: 1 addition & 1 deletion open-build-service-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ quick-xml = { version = "0.23.1", features = [ "serialize" ] }
rand = "0.8.5"
serde = "1.0.125"
strum = "0.23"
Copy link

Copilot AI Sep 22, 2025

Choose a reason for hiding this comment

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

The strum and strum_macros dependencies have mismatched versions (0.23 vs 0.27). These packages are typically used together and should have compatible versions to avoid potential compatibility issues.

Suggested change
strum = "0.23"
strum = "0.27"

Copilot uses AI. Check for mistakes.

strum_macros = "0.23"
strum_macros = "0.27"
wiremock = "0.6.2"
base64ct = { version = "1.6.0", features = ["std"] }