From ba376cc5321e64ffa401f4b74cc3348754428520 Mon Sep 17 00:00:00 2001 From: xxchan Date: Sun, 8 Oct 2023 00:17:13 +0800 Subject: [PATCH] minor updates --- .github/dependabot.yml | 4 ++++ Cargo.toml | 1 + src/common/Cargo.toml | 2 +- src/java_binding/Cargo.toml | 2 +- src/jni_core/Cargo.toml | 2 +- src/meta/Cargo.toml | 2 +- src/prost/Cargo.toml | 2 +- src/storage/Cargo.toml | 2 +- src/storage/backup/Cargo.toml | 2 +- src/storage/hummock_trace/Cargo.toml | 2 +- src/stream/Cargo.toml | 2 +- 11 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5ba6be84f4329..b2d58279b5290 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,3 +19,7 @@ updates: aws: patterns: - "aws*" + tonic: + patterns: + - "tonic*" + - "prost*" diff --git a/Cargo.toml b/Cargo.toml index c72bc36487927..43316c1288f09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,6 +107,7 @@ hashbrown = { version = "0.14.0", features = [ criterion = { version = "0.5", features = ["async_futures"] } tonic = { package = "madsim-tonic", version = "0.4.0" } tonic-build = { package = "madsim-tonic-build", version = "0.4.0" } +prost = { version = "0.12" } icelake = { git = "https://github.com/icelake-io/icelake", rev = "72a65aed6ed7b3d529b311031c2c8d99650990e2" } arrow-array = "47" arrow-cast = "47" diff --git a/src/common/Cargo.toml b/src/common/Cargo.toml index c204e3acb5f9a..233945f94eeec 100644 --- a/src/common/Cargo.toml +++ b/src/common/Cargo.toml @@ -65,7 +65,7 @@ postgres-types = { version = "0.2.6", features = [ ] } prehash = "1" prometheus = { version = "0.13" } -prost = "0.12" +prost = { workspace = true } rand = "0.8" regex = "1" reqwest = { version = "0.11", features = ["json"] } diff --git a/src/java_binding/Cargo.toml b/src/java_binding/Cargo.toml index f52fa44eab31b..477f19878cbd9 100644 --- a/src/java_binding/Cargo.toml +++ b/src/java_binding/Cargo.toml @@ -11,7 +11,7 @@ normal = ["workspace-hack"] [dependencies] jni = "0.21.1" -prost = "0.12" +prost = { workspace = true } risingwave_common = { workspace = true } risingwave_jni_core = { workspace = true } risingwave_pb = { workspace = true } diff --git a/src/jni_core/Cargo.toml b/src/jni_core/Cargo.toml index 879c198b1599f..69c11a7f21e24 100644 --- a/src/jni_core/Cargo.toml +++ b/src/jni_core/Cargo.toml @@ -16,7 +16,7 @@ futures = { version = "0.3", default-features = false, features = ["alloc"] } itertools = "0.11" jni = "0.21.1" paste = "1" -prost = "0.12" +prost = { workspace = true } risingwave_common = { workspace = true } risingwave_hummock_sdk = { workspace = true } risingwave_object_store = { workspace = true } diff --git a/src/meta/Cargo.toml b/src/meta/Cargo.toml index 2481b5a1efcdb..f33f36bbb5284 100644 --- a/src/meta/Cargo.toml +++ b/src/meta/Cargo.toml @@ -43,7 +43,7 @@ parking_lot = { version = "0.12", features = ["arc_lock"] } parse-display = "0.8" prometheus = "0.13" prometheus-http-query = "0.6" -prost = "0.12" +prost = { workspace = true } rand = "0.8" regex = "1" reqwest = "0.11" diff --git a/src/prost/Cargo.toml b/src/prost/Cargo.toml index c5c36c1f96274..d373207966640 100644 --- a/src/prost/Cargo.toml +++ b/src/prost/Cargo.toml @@ -10,7 +10,7 @@ repository = { workspace = true } [dependencies] enum-as-inner = "0.6" pbjson = "0.6" -prost = "0.12" +prost = { workspace = true } prost-helpers = { path = "helpers" } serde = { version = "1", features = ["derive"] } strum = "0.25" diff --git a/src/storage/Cargo.toml b/src/storage/Cargo.toml index d3541ec4951f8..9e778668f4385 100644 --- a/src/storage/Cargo.toml +++ b/src/storage/Cargo.toml @@ -38,7 +38,7 @@ more-asserts = "0.3" num-integer = "0.1" parking_lot = "0.12" prometheus = { version = "0.13", features = ["process"] } -prost = "0.12" +prost = { workspace = true } rand = "0.8" risingwave_backup = { workspace = true } risingwave_common = { workspace = true } diff --git a/src/storage/backup/Cargo.toml b/src/storage/backup/Cargo.toml index b06e33c344f4c..f4f66927c33d4 100644 --- a/src/storage/backup/Cargo.toml +++ b/src/storage/backup/Cargo.toml @@ -19,7 +19,7 @@ async-trait = "0.1" bytes = { version = "1", features = ["serde"] } itertools = "0.11" parking_lot = { version = "0.12", features = ["arc_lock"] } -prost = "0.12" +prost = { workspace = true } risingwave_common = { workspace = true } risingwave_hummock_sdk = { workspace = true } risingwave_object_store = { workspace = true } diff --git a/src/storage/hummock_trace/Cargo.toml b/src/storage/hummock_trace/Cargo.toml index 8d16dc97ca3df..46eabf17835e4 100644 --- a/src/storage/hummock_trace/Cargo.toml +++ b/src/storage/hummock_trace/Cargo.toml @@ -16,7 +16,7 @@ bytes = { version = "1", features = ["serde"] } futures = { version = "0.3", default-features = false, features = ["alloc"] } futures-async-stream = "0.2" parking_lot = "0.12" -prost = "0.12" +prost = { workspace = true } risingwave_common = { workspace = true } risingwave_hummock_sdk = { workspace = true } risingwave_pb = { workspace = true } diff --git a/src/stream/Cargo.toml b/src/stream/Cargo.toml index 9b4624e36c70c..6db0d9567d2b0 100644 --- a/src/stream/Cargo.toml +++ b/src/stream/Cargo.toml @@ -45,7 +45,7 @@ parking_lot = "0.12" parse-display = "0.8" pin-project = "1" prometheus = { version = "0.13", features = ["process"] } -prost = "0.12" +prost = { workspace = true } rand = "0.8" risingwave_common = { workspace = true } risingwave_connector = { workspace = true }