From 7c5e35944ebe612232c4bd7eb17ae4257f1cff32 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 17 Jan 2024 21:26:22 +0100 Subject: [PATCH 1/3] fix(rust): Add required metadata for crates.io --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0342fb49..1e25a10a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "rust_arroyo" version = "2.15.3" +authors = ["Sentry "] +description = "A library for working with streaming data." +repository = "https://github.com/getsentry/sentry-kafka-schemas" +license = "Apache-2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From 8218f7be2c3631baa1e3813d3fb842509c9ac9b9 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 17 Jan 2024 21:34:03 +0100 Subject: [PATCH 2/3] remove rdkafka git dependency --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e25a10a..c180decd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ chrono = "0.4.26" coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" -rdkafka = { version = "0.36.1", features = ["cmake-build", "tracing"] } +rdkafka = { version = "0.36.2", features = ["cmake-build", "tracing"] } sentry = { version = "0.32.0" } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" @@ -30,9 +30,6 @@ parking_lot = "0.12.1" [dev-dependencies] tracing-subscriber = "0.3.18" -[patch.crates-io] -rdkafka = { git = "https://github.com/fede1024/rust-rdkafka" } - [[example]] name = "base_processor" path = "rust-arroyo/examples/base_processor.rs" From 113566037893e903d2be350becaf00c875403481 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 4 Dec 2024 13:30:39 -0800 Subject: [PATCH 3/3] remove extra version --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4046cb50..b15ebb21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "rust_arroyo" -version = "2.15.3" version = "2.18.2" authors = ["Sentry "] description = "A library for working with streaming data."