This is an automated email from the ASF dual-hosted git repository.
gkoszyk pushed a commit to branch partition_remaster
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/partition_remaster by this
push:
new 65295d414 fix ci
65295d414 is described below
commit 65295d41416c82ea9bf485b512427ba98291e57e
Author: numinex <[email protected]>
AuthorDate: Thu Mar 26 14:46:59 2026 +0100
fix ci
---
Cargo.lock | 5 -----
Cargo.toml | 2 +-
core/common/Cargo.toml | 3 +--
core/iobuf/Cargo.toml | 1 -
core/message_bus/Cargo.toml | 1 -
core/metadata/Cargo.toml | 1 -
core/partitions/Cargo.toml | 2 +-
core/simulator/Cargo.toml | 1 -
8 files changed, 3 insertions(+), 13 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 68757e0be..30e749820 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5446,7 +5446,6 @@ dependencies = [
"serde_json",
"serde_with",
"serial_test",
- "smallvec",
"strum 0.28.0",
"thiserror 2.0.18",
"tokio",
@@ -5930,7 +5929,6 @@ version = "0.1.0"
dependencies = [
"aligned-vec",
"compio-buf",
- "smallvec",
]
[[package]]
@@ -6670,7 +6668,6 @@ version = "0.1.0"
dependencies = [
"iggy_binary_protocol",
"iggy_common",
- "iobuf",
"rand 0.10.0",
]
@@ -6683,7 +6680,6 @@ dependencies = [
"consensus",
"iggy_binary_protocol",
"iggy_common",
- "iobuf",
"journal",
"left-right",
"message_bus",
@@ -9956,7 +9952,6 @@ name = "simulator"
version = "0.1.0"
dependencies = [
"bytemuck",
- "bytes",
"consensus",
"enumset",
"futures",
diff --git a/Cargo.toml b/Cargo.toml
index bfcfac2f7..9c5a0b5b6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -158,7 +158,6 @@ hostname = "0.4.2"
human-repr = "1.1.0"
humantime = "2.3.0"
hwlocality = "1.0.0-alpha.11"
-iobuf = { path = "core/iobuf" }
iceberg = "0.9.0"
iceberg-catalog-rest = "0.9.0"
iceberg-storage-opendal = "0.9.0"
@@ -168,6 +167,7 @@ iggy_binary_protocol = { path = "core/binary_protocol",
version = "0.9.4-edge.1"
iggy_common = { path = "core/common", version = "0.9.4-edge.1" }
iggy_connector_sdk = { path = "core/connectors/sdk", version = "0.2.1-edge.1" }
integration = { path = "core/integration" }
+iobuf = { path = "core/iobuf" }
journal = { path = "core/journal" }
js-sys = "0.3"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
diff --git a/core/common/Cargo.toml b/core/common/Cargo.toml
index 0951b5e3a..2a24926a9 100644
--- a/core/common/Cargo.toml
+++ b/core/common/Cargo.toml
@@ -36,8 +36,8 @@ async-trait = { workspace = true }
base64 = { workspace = true }
blake3 = { workspace = true }
bon = { workspace = true }
-bytemuck = { workspace = true }
byte-unit = { workspace = true }
+bytemuck = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
@@ -67,7 +67,6 @@ tokio = { workspace = true }
tracing = { workspace = true }
tungstenite = { workspace = true }
twox-hash = { workspace = true }
-smallvec = "1.13"
ulid = { workspace = true }
uuid = { workspace = true }
diff --git a/core/iobuf/Cargo.toml b/core/iobuf/Cargo.toml
index 6fc851a58..9ec4e8cd6 100644
--- a/core/iobuf/Cargo.toml
+++ b/core/iobuf/Cargo.toml
@@ -24,4 +24,3 @@ license = "Apache-2.0"
[dependencies]
aligned-vec = "0.6"
compio-buf = "0.8.0"
-smallvec = "1.13"
diff --git a/core/message_bus/Cargo.toml b/core/message_bus/Cargo.toml
index e48300cda..d43225bfb 100644
--- a/core/message_bus/Cargo.toml
+++ b/core/message_bus/Cargo.toml
@@ -30,7 +30,6 @@ readme = "../../../README.md"
[dependencies]
iggy_binary_protocol = { workspace = true }
iggy_common = { workspace = true }
-iobuf = { workspace = true }
rand = { workspace = true }
[lints.clippy]
diff --git a/core/metadata/Cargo.toml b/core/metadata/Cargo.toml
index 24c13bdf1..3b12f52e1 100644
--- a/core/metadata/Cargo.toml
+++ b/core/metadata/Cargo.toml
@@ -33,7 +33,6 @@ bytes = { workspace = true }
consensus = { workspace = true }
iggy_binary_protocol = { workspace = true }
iggy_common = { workspace = true }
-iobuf = { workspace = true }
journal = { workspace = true }
left-right = { workspace = true }
message_bus = { workspace = true }
diff --git a/core/partitions/Cargo.toml b/core/partitions/Cargo.toml
index 8c4d5a9d0..8969e07c0 100644
--- a/core/partitions/Cargo.toml
+++ b/core/partitions/Cargo.toml
@@ -32,9 +32,9 @@ bytemuck = { workspace = true }
bytes = { workspace = true }
compio = { workspace = true }
consensus = { workspace = true }
-iobuf = { workspace = true }
iggy_binary_protocol = { workspace = true }
iggy_common = { workspace = true }
+iobuf = { workspace = true }
journal = { workspace = true }
message_bus = { workspace = true }
ringbuffer = { workspace = true }
diff --git a/core/simulator/Cargo.toml b/core/simulator/Cargo.toml
index 7c3c93c74..7cfd90b43 100644
--- a/core/simulator/Cargo.toml
+++ b/core/simulator/Cargo.toml
@@ -22,7 +22,6 @@ edition = "2024"
[dependencies]
bytemuck = { workspace = true }
-bytes = { workspace = true }
consensus = { path = "../consensus" }
enumset = { workspace = true }
futures = { workspace = true }