Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Jan 4, 2024
1 parent eada1d1 commit 6f3a953
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ deltalake = { git = "https://github.com/risingwavelabs/delta-rs", rev = "5c2dccd
"s3-no-concurrent-write",
] }
parquet = "49"
serde_json = {version = "1" , features = ["arbitrary_precision"]}
thiserror-ext = "0.0.10"
tikv-jemalloc-ctl = { git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9" }
tikv-jemallocator = { git = "https://github.com/risingwavelabs/jemallocator.git", features = [
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/feature-store/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tokio = { version = "1", features = ["full"] }
tonic = "0.10.2"
reqwest = { version = "0.11", features = ["blocking"] }
rdkafka = { version = "0.34", features = ["cmake-build"] }
serde_json = "1.0"
serde_json = { workspace = true }
prost = "0.12"
clap = "4.4.6"
tokio-postgres = "0.7.10"
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/feature-store/simulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
tokio = { version = "1", features=["macros","rt", "rt-multi-thread"]}
tonic = "0.10.2"
reqwest = { version = "0.11"}
serde_json = "1.0"
serde_json = { workspace = true }
serde_derive = "1.0"
rand = "0.8"
clap = "4.4.6"
Expand Down
2 changes: 1 addition & 1 deletion src/batch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ risingwave_rpc_client = { workspace = true }
risingwave_source = { workspace = true }
risingwave_storage = { workspace = true }
scopeguard = "1"
serde_json = "1"
serde_json = { workspace = true }
thiserror = "1"
thiserror-ext = { workspace = true }
tokio = { version = "0.2", package = "madsim-tokio", features = [
Expand Down
2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ryu = "1.0"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_default = "0.1"
serde_json = "1"
serde_json = { workspace = true }
serde_with = "3"
smallbitset = "0.7.1"
speedate = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion src/compute/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ risingwave_source = { workspace = true }
risingwave_storage = { workspace = true }
risingwave_stream = { workspace = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
thiserror-ext = { workspace = true }
tikv-jemalloc-ctl = { workspace = true }
tokio = { version = "0.2", package = "madsim-tokio", features = [
Expand Down
2 changes: 1 addition & 1 deletion src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ risingwave_rpc_client = { workspace = true }
rust_decimal = "1"
serde = { version = "1", features = ["derive", "rc"] }
serde_derive = "1"
serde_json = "1"
serde_json = { workspace = true }
serde_with = { version = "3", features = ["json"] }
simd-json = "0.13.3"
strum = "0.25"
Expand Down
2 changes: 1 addition & 1 deletion src/ctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ risingwave_rpc_client = { workspace = true }
risingwave_storage = { workspace = true }
risingwave_stream = { workspace = true }
serde = "1"
serde_json = "1"
serde_json = { workspace = true }
serde_yaml = "0.9.25"
size = "0.4"
thiserror-ext = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion src/expr/impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ risingwave_pb = { workspace = true }
rust_decimal = { version = "1", features = ["db-postgres", "maths"] }
self_cell = "1.0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
sha1 = "0.10"
sha2 = "0.10"
sql-json-path = { version = "0.1", features = ["jsonbb"] }
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ risingwave_storage = { workspace = true }
risingwave_udf = { workspace = true }
risingwave_variables = { workspace = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
sha2 = "0.10.7"
smallvec = { version = "1.11.1", features = ["serde"] }
tempfile = "3"
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 @@ -16,7 +16,7 @@ risingwave_common = { workspace = true }
risingwave_jni_core = { workspace = true }
risingwave_pb = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json = { workspace = true }

[dev-dependencies]
risingwave_expr = { 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 @@ -25,7 +25,7 @@ risingwave_object_store = { workspace = true }
risingwave_pb = { workspace = true }
risingwave_storage = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json = { workspace = true }
thiserror = "1"
thiserror-ext = { workspace = true }
tokio = { version = "0.2", package = "madsim-tokio", features = [
Expand Down
2 changes: 1 addition & 1 deletion src/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ sea-orm = { version = "0.12.0", features = [
"macros",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
strum = { version = "0.25", features = ["derive"] }
sync-point = { path = "../utils/sync-point" }
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/meta/model_v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ sea-orm = { version = "0.12.0", features = [
"macros",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
2 changes: 1 addition & 1 deletion src/meta/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ sea-orm = { version = "0.12.0", features = [
"macros",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
tokio = { version = "0.2", package = "madsim-tokio", features = [
"rt",
"rt-multi-thread",
Expand Down
2 changes: 1 addition & 1 deletion src/risedevtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ redis = "0.24"
regex = "1"
reqwest = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
serde_with = "3"
serde_yaml = "0.9"
tempfile = "3"
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 @@ -27,7 +27,7 @@ risingwave_meta_model_v2 = { workspace = true }
risingwave_object_store = { workspace = true }
risingwave_pb = { workspace = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json = { workspace = true }
thiserror = "1"
twox-hash = "1"

Expand Down
2 changes: 1 addition & 1 deletion src/stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ risingwave_pb = { workspace = true }
risingwave_rpc_client = { workspace = true }
risingwave_source = { workspace = true }
risingwave_storage = { workspace = true }
serde_json = "1"
serde_json = { workspace = true }
smallvec = "1"
static_assertions = "1"
thiserror = "1"
Expand Down

0 comments on commit 6f3a953

Please sign in to comment.