Skip to content

Commit

Permalink
scylla-proxy: bump version to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wprzytula committed Jul 11, 2024
1 parent 071ea12 commit 1e63f3b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock.msrv

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

12 changes: 10 additions & 2 deletions scylla-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scylla-proxy"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
description = "Proxy layer between Scylla driver and cluster that enables testing Scylla drivers' behaviour in unfavourable conditions"
repository = "https://github.com/scylladb/scylla-rust-driver"
Expand All @@ -17,7 +17,15 @@ scylla-cql = { version = "0.2.0", path = "../scylla-cql" }
byteorder = "1.3.4"
bytes = "1.2.0"
futures = "0.3.6"
tokio = { version = "1.12", features = ["net", "time", "io-util", "sync", "rt", "macros", "rt-multi-thread"] }
tokio = { version = "1.12", features = [
"net",
"time",
"io-util",
"sync",
"rt",
"macros",
"rt-multi-thread",
] }
uuid = "1.0"
thiserror = "1.0.32"
bigdecimal = "0.4"
Expand Down
31 changes: 26 additions & 5 deletions scylla/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,28 @@ rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
ssl = ["dep:tokio-openssl", "dep:openssl"]
cloud = ["ssl", "scylla-cql/serde", "dep:serde_yaml", "dep:serde", "dep:url", "dep:base64"]
cloud = [
"ssl",
"scylla-cql/serde",
"dep:serde_yaml",
"dep:serde",
"dep:url",
"dep:base64",
]
secret = ["scylla-cql/secret"]
chrono = ["scylla-cql/chrono"]
time = ["scylla-cql/time"]
num-bigint-03 = ["scylla-cql/num-bigint-03"]
num-bigint-04 = ["scylla-cql/num-bigint-04"]
bigdecimal-04 = ["scylla-cql/bigdecimal-04"]
full-serialization = ["chrono", "time", "secret", "num-bigint-03", "num-bigint-04", "bigdecimal-04"]
full-serialization = [
"chrono",
"time",
"secret",
"num-bigint-03",
"num-bigint-04",
"bigdecimal-04",
]

[dependencies]
scylla-macros = { version = "0.5.0", path = "../scylla-macros" }
Expand All @@ -33,7 +47,14 @@ bytes = "1.0.1"
futures = "0.3.6"
hashbrown = "0.14"
histogram = "0.6.9"
tokio = { version = "1.34", features = ["net", "time", "io-util", "sync", "rt", "macros"] }
tokio = { version = "1.34", features = [
"net",
"time",
"io-util",
"sync",
"rt",
"macros",
] }
snap = "1.0"
uuid = { version = "1.0", features = ["v4"] }
rand = "0.8.3"
Expand All @@ -60,9 +81,9 @@ lazy_static = "1"
num-bigint-03 = { package = "num-bigint", version = "0.3" }
num-bigint-04 = { package = "num-bigint", version = "0.4" }
bigdecimal-04 = { package = "bigdecimal", version = "0.4" }
scylla-proxy = { version = "0.0.3", path = "../scylla-proxy" }
scylla-proxy = { version = "0.0.4", path = "../scylla-proxy" }
ntest = "0.9.0"
criterion = "0.4" # Note: v0.5 needs at least rust 1.70.0
criterion = "0.4" # Note: v0.5 needs at least rust 1.70.0
tokio = { version = "1.27", features = ["test-util"] }
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
assert_matches = "1.5.0"
Expand Down

0 comments on commit 1e63f3b

Please sign in to comment.