Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps to let vulnerable transitive deps go #3

Merged
merged 1 commit into from
Jul 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-tikv-client"
version = "0.1.0-surreal.1"
version = "0.1.0-surreal.2"
keywords = ["TiKV", "KV", "distributed-systems"]
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -23,7 +23,7 @@ derive-new = "0.5"
fail = "0.4"
futures = { version = "0.3", features = ["async-await", "thread-pool"] }
futures-timer = "3.0"
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen", "openssl-vendored" ], default-features = false }
grpcio = { version = "0.10", features = [ "boringssl", "prost-codec", "openssl-vendored" ], default-features = false }
lazy_static = "1"
log = "0.4"
prometheus = { version = "0.12", features = [ "push", "process" ], default-features = false }
Expand All @@ -34,10 +34,10 @@ serde_derive = "1.0"
thiserror = "1"
tokio = { version = "1.0", features = [ "sync", "time" ] }

surrealdb-tikv-client-common = { version = "0.1.0-surreal.1", path = "tikv-client-common" }
surrealdb-tikv-client-pd = { version = "0.1.0-surreal.1", path = "tikv-client-pd" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.1", path = "tikv-client-proto" }
surrealdb-tikv-client-store = { version = "0.1.0-surreal.1", path = "tikv-client-store" }
surrealdb-tikv-client-common = { version = "0.1.0-surreal.2", path = "tikv-client-common" }
surrealdb-tikv-client-pd = { version = "0.1.0-surreal.2", path = "tikv-client-pd" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.2", path = "tikv-client-proto" }
surrealdb-tikv-client-store = { version = "0.1.0-surreal.2", path = "tikv-client-store" }


[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The TiKV client is a Rust library (crate). To use this crate in your project, ad

```toml
[dependencies]
tikv-client = "0.1.0-surreal.1"
tikv-client = "0.1.0-surreal.2"
```

The minimum supported version of Rust is 1.40. The minimum supported version of TiKV is 5.0.
Expand Down
2 changes: 1 addition & 1 deletion mock-tikv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2018"
[dependencies]
derive-new = "0.5"
futures = "0.3"
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
grpcio = { version = "0.10", features = [ "boringssl", "prost-codec" ], default-features = false }
log = "0.4"
surrealdb-tikv-client-proto = { path = "../tikv-client-proto"}
6 changes: 3 additions & 3 deletions tikv-client-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-tikv-client-common"
version = "0.1.0-surreal.1"
version = "0.1.0-surreal.2"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -10,11 +10,11 @@ description = "Common components of the TiKV Rust client"
[dependencies]
thiserror = "1"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
grpcio = { version = "0.10", features = [ "boringssl", "prost-codec" ], default-features = false }
lazy_static = "1"
log = "0.4"
regex = "1"
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.1", path = "../tikv-client-proto" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.2", path = "../tikv-client-proto" }

[dev-dependencies]
clap = "2"
Expand Down
8 changes: 4 additions & 4 deletions tikv-client-pd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-tikv-client-pd"
version = "0.1.0-surreal.1"
version = "0.1.0-surreal.2"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -10,10 +10,10 @@ description = "Low level PD components for the TiKV Rust client"
[dependencies]
async-trait = "0.1"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
grpcio = { version = "0.10", features = [ "boringssl", "prost-codec" ], default-features = false }
log = "0.4"
surrealdb-tikv-client-common = { version = "0.1.0-surreal.1", path = "../tikv-client-common" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.1", path = "../tikv-client-proto" }
surrealdb-tikv-client-common = { version = "0.1.0-surreal.2", path = "../tikv-client-common" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.2", path = "../tikv-client-proto" }

[dev-dependencies]
clap = "2"
Expand Down
10 changes: 5 additions & 5 deletions tikv-client-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-tikv-client-proto"
version = "0.1.0-surreal.1"
version = "0.1.0-surreal.2"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -9,12 +9,12 @@ description = "Protobuf specs for the TiKV Rust client"
build = "build.rs"

[build-dependencies]
protobuf-build = { version = "0.12", default-features = false, features = ["grpcio-prost-codec"] }
protobuf-build = { version = "0.14", default-features = false, features = ["grpcio-prost-codec"] }

[dependencies]
protobuf = "2.8"
prost = { version = "0.7" }
prost-derive = { version = "0.7" }
prost = { version = "0.9" }
prost-derive = { version = "0.9" }
futures = "0.3"
grpcio = { version = "0.8", default-features = false, features = ["secure", "prost-codec", "use-bindgen"] }
grpcio = { version = "0.10", default-features = false, features = ["boringssl", "prost-codec"] }
lazy_static = { version = "1" }
8 changes: 4 additions & 4 deletions tikv-client-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-tikv-client-store"
version = "0.1.0-surreal.1"
version = "0.1.0-surreal.2"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -11,7 +11,7 @@ description = "Low level TiKV node components of the TiKV Rust client"
async-trait = "0.1"
derive-new = "0.5"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.8", features = ["secure", "prost-codec", "use-bindgen"], default-features = false }
grpcio = { version = "0.10", features = ["boringssl", "prost-codec"], default-features = false }
log = "0.4"
surrealdb-tikv-client-common = { version = "0.1.0-surreal.1", path = "../tikv-client-common" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.1", path = "../tikv-client-proto" }
surrealdb-tikv-client-common = { version = "0.1.0-surreal.2", path = "../tikv-client-common" }
surrealdb-tikv-client-proto = { version = "0.1.0-surreal.2", path = "../tikv-client-proto" }