Skip to content

Commit

Permalink
chore: rust_decimal feature -db-tokio-postgres +maths (#9043)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangjinwu committed Apr 7, 2023
1 parent 85980fd commit 9a15a88
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ rand = "0.8"
regex = "1"
reqwest = { version = "0.11", features = ["json"] }
risingwave_pb = { path = "../prost" }
rust_decimal = { version = "1", features = ["db-tokio-postgres"] }
rust_decimal = { version = "1", features = ["db-postgres", "maths"] }
ryu = "1.0"
serde = { version = "1", features = ["derive"] }
serde_default = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/tests/e2e_extended_mode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ anyhow = { version = "1", features = ["backtrace"] }
chrono = { version = "0.4", features = ['serde'] }
clap = { version = "4", features = ["derive"] }
pg_interval = "0.4"
rust_decimal ={ version = "1.25", features = ["db-postgres","db-tokio-postgres"] }
rust_decimal ={ version = "1.25", features = ["db-postgres"] }
tokio = { version = "1", features = ["rt", "macros","rt-multi-thread"] }
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
tracing = "0.1"
Expand Down
1 change: 0 additions & 1 deletion src/utils/pgwire/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ postgres-types = { version = "0.2.4", features = ["derive","with-chrono-0_4"] }
regex = "1.5"
risingwave_common = { path = "../../common" }
risingwave_sqlparser = { path = "../../sqlparser" }
rust_decimal = { version = "1", features = ["db-tokio-postgres"] }
thiserror = "1"
tokio = { version = "0.2", package = "madsim-tokio", features = ["rt", "macros"] }
tokio-openssl = "0.6.3"
Expand Down
4 changes: 2 additions & 2 deletions src/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ regex = { version = "1" }
regex-syntax = { version = "0.6" }
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"] }
ring = { version = "0.16", features = ["std"] }
rust_decimal = { version = "1", features = ["db-postgres", "db-tokio-postgres"] }
rust_decimal = { version = "1", features = ["db-postgres", "maths"] }
scopeguard = { version = "1" }
serde = { version = "1", features = ["alloc", "derive", "rc"] }
serde_json = { version = "1", features = ["alloc"] }
Expand Down Expand Up @@ -180,7 +180,7 @@ regex = { version = "1" }
regex-syntax = { version = "0.6" }
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"] }
ring = { version = "0.16", features = ["std"] }
rust_decimal = { version = "1", features = ["db-postgres", "db-tokio-postgres"] }
rust_decimal = { version = "1", features = ["db-postgres", "maths"] }
scopeguard = { version = "1" }
serde = { version = "1", features = ["alloc", "derive", "rc"] }
serde_json = { version = "1", features = ["alloc"] }
Expand Down

0 comments on commit 9a15a88

Please sign in to comment.