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
29 changes: 21 additions & 8 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ members = [
"e2e",
]

[workspace.dependencies]
rdkafka = "0.38.0"

[package]
name = "skywalking"
version = "0.9.0"
Expand Down Expand Up @@ -51,7 +54,7 @@ parking_lot = "0.12.3"
portable-atomic = { version = "1.11.0", features = ["float"] }
prost = "0.13.5"
prost-derive = "0.13.5"
rdkafka = { version = "0.37.0", optional = true }
rdkafka = { workspace = true, optional = true }
serde = { version = "1.0.219", features = ["derive"] }
systemstat = { version = "0.2.4", optional = true }
thiserror = "2.0.12"
Expand Down
9 changes: 5 additions & 4 deletions dist-material/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,11 @@ The text of each license is also included in licenses/LICENSE-[project].txt.
https://crates.io/crates/hyper-timeout/0.5.2 0.5.2 Apache-2.0 OR MIT
https://crates.io/crates/indexmap/1.9.3 1.9.3 Apache-2.0 OR MIT
https://crates.io/crates/indexmap/2.8.0 2.8.0 Apache-2.0 OR MIT
https://crates.io/crates/io-uring/0.7.8 0.7.8 Apache-2.0 OR MIT
https://crates.io/crates/itertools/0.14.0 0.14.0 Apache-2.0 OR MIT
https://crates.io/crates/itoa/1.0.15 1.0.15 Apache-2.0 OR MIT
https://crates.io/crates/lazy_static/1.5.0 1.5.0 Apache-2.0 OR MIT
https://crates.io/crates/libc/0.2.171 0.2.171 Apache-2.0 OR MIT
https://crates.io/crates/libc/0.2.174 0.2.174 Apache-2.0 OR MIT
https://crates.io/crates/libz-sys/1.1.22 1.1.22 Apache-2.0 OR MIT
https://crates.io/crates/lock_api/0.4.12 0.4.12 Apache-2.0 OR MIT
https://crates.io/crates/log/0.4.27 0.4.27 Apache-2.0 OR MIT
Expand Down Expand Up @@ -417,13 +418,13 @@ The text of each license is also included in licenses/LICENSE-[project].txt.
https://crates.io/crates/hyper-util/0.1.10 0.1.10 MIT
https://crates.io/crates/mio/1.0.3 1.0.3 MIT
https://crates.io/crates/nom/7.1.3 7.1.3 MIT
https://crates.io/crates/rdkafka/0.37.0 0.37.0 MIT
https://crates.io/crates/rdkafka-sys/4.8.0+2.3.0 4.8.0+2.3.0 MIT
https://crates.io/crates/rdkafka/0.38.0 0.38.0 MIT
https://crates.io/crates/rdkafka-sys/4.9.0+2.10.0 4.9.0+2.10.0 MIT
https://crates.io/crates/redox_syscall/0.5.10 0.5.10 MIT
https://crates.io/crates/slab/0.4.9 0.4.9 MIT
https://crates.io/crates/strsim/0.8.0 0.8.0 MIT
https://crates.io/crates/textwrap/0.11.0 0.11.0 MIT
https://crates.io/crates/tokio/1.44.1 1.44.1 MIT
https://crates.io/crates/tokio/1.46.1 1.46.1 MIT
https://crates.io/crates/tokio-macros/2.5.0 2.5.0 MIT
https://crates.io/crates/tokio-stream/0.1.17 0.1.17 MIT
https://crates.io/crates/tokio-util/0.7.14 0.7.14 MIT
Expand Down
2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"] }
hyper-util = "0.1.10"
prost = "0.13.5"
rdkafka = "0.37.0"
rdkafka = { workspace = true }
skywalking = { path = "..", features = ["kafka-reporter"] }
structopt = "0.3"
tokio = { version = "1", features = ["full"] }