From 7881c5cc6f9c43540615a76823a7ca8fdd335830 Mon Sep 17 00:00:00 2001 From: Teimuraz Date: Sat, 11 May 2024 01:52:34 +0400 Subject: [PATCH] Update version --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- README.md | 2 +- example/Cargo.toml | 2 +- integration_tests/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3d80f7..d45c46d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,7 +210,7 @@ dependencies = [ "tokio", "tonic", "tonic-build", - "tonic-middleware 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tonic-middleware 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -481,14 +481,14 @@ dependencies = [ [[package]] name = "integration_tests" -version = "0.1.3" +version = "0.1.4" dependencies = [ "prost", "serial_test", "tokio", "tonic", "tonic-build", - "tonic-middleware 0.1.3", + "tonic-middleware 0.1.4", ] [[package]] @@ -1082,7 +1082,7 @@ dependencies = [ [[package]] name = "tonic-middleware" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "futures-util", @@ -1092,9 +1092,9 @@ dependencies = [ [[package]] name = "tonic-middleware" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ada47f00ab9d547fed0db0791fa194b7d1be27d9262331f5f5f1a375e1b880b" +checksum = "92d34dab0f18194ddb9164685a3d8cf777ff35042752aba2be208b1384d7a304" dependencies = [ "async-trait", "futures-util", diff --git a/Cargo.toml b/Cargo.toml index dc18b88..8210274 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["middleware", "interceptor", "tonic", "async", "grpc"] license = "MIT" readme = "README.md" repository = "https://github.com/teimuraz/tonic-middleware" -version = "0.1.3" +version = "0.1.4" [dependencies] tonic = "0.11.0" diff --git a/README.md b/README.md index 2d56fd0..289b66d 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ through Tonic's layer. Add to Cargo.toml ``` -tonic-middleware = "0.1.3" +tonic-middleware = "0.1.4" ``` See full [example](https://github.com/teimuraz/tonic-middleware/tree/main/example) or check [integration tests](https://github.com/teimuraz/tonic-middleware/blob/main/integration_tests/tests/tests.rs) diff --git a/example/Cargo.toml b/example/Cargo.toml index 8b6bc5f..b8567dd 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -15,7 +15,7 @@ path = "src/client.rs" tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] } tonic = "0.11.0" prost = "0.12.3" -tonic-middleware = "0.1.3" +tonic-middleware = "0.1.4" [build-dependencies] diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index da7f946..5e0237f 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration_tests" -version = "0.1.3" +version = "0.1.4" edition = "2021" [lib]