Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Oct 7, 2023
1 parent 4e497ce commit ba376cc
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ updates:
aws:
patterns:
- "aws*"
tonic:
patterns:
- "tonic*"
- "prost*"
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion src/java_binding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/jni_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/prost/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/storage/backup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/storage/hummock_trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit ba376cc

Please sign in to comment.