This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new d3ad4a326 fix(ci): restore integration deps accidentally moved to
musl-excluded section (#2479)
d3ad4a326 is described below
commit d3ad4a326e101913b79588ec6d67996cd9f254a7
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Fri Dec 12 12:59:02 2025 +0100
fix(ci): restore integration deps accidentally moved to musl-excluded
section (#2479)
---
core/integration/Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/integration/Cargo.toml b/core/integration/Cargo.toml
index c72691d22..c185dd8ae 100644
--- a/core/integration/Cargo.toml
+++ b/core/integration/Cargo.toml
@@ -42,9 +42,6 @@ iggy = { workspace = true }
iggy_binary_protocol = { workspace = true }
iggy_common = { workspace = true }
lazy_static = { workspace = true }
-
-[target.'cfg(not(target_env = "musl"))'.dependencies]
-keyring = { workspace = true }
libc = "0.2.178"
log = { workspace = true }
predicates = { workspace = true }
@@ -68,3 +65,6 @@ tokio = { workspace = true }
twox-hash = { workspace = true }
uuid = { workspace = true }
zip = { workspace = true }
+
+[target.'cfg(not(target_env = "musl"))'.dependencies]
+keyring = { workspace = true }