diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index bab00c8083..43dfaa59ae 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -1549,7 +1549,7 @@ dependencies = [ [[package]] name = "scylla-proxy" -version = "0.0.3" +version = "0.0.4" dependencies = [ "assert_matches", "bigdecimal", diff --git a/scylla-proxy/Cargo.toml b/scylla-proxy/Cargo.toml index 704c81061d..eb4f1d9eb6 100644 --- a/scylla-proxy/Cargo.toml +++ b/scylla-proxy/Cargo.toml @@ -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" @@ -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" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index 028406f6ca..e6574c2c63 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -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" } @@ -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" @@ -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"