Skip to content

Commit

Permalink
Update tonic to 0.12.2 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
teimuraz authored Sep 16, 2024
1 parent 6a1147e commit b6d6fbc
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ keywords = ["middleware", "interceptor", "tonic", "async", "grpc"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/teimuraz/tonic-middleware"
version = "0.2.1"
version = "0.2.2"

[dependencies]
tonic = "0.12.1"
tonic = "0.12.2"
async-trait = "0.1.78"
futures-util = "0.3.30"
tower = "0.4.13"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ through Tonic's layer.

Add to Cargo.toml
```
tonic-middleware = "0.2.1"
tonic-middleware = "0.2.2"
```

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)
Expand Down
6 changes: 3 additions & 3 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ path = "src/client.rs"

[dependencies]
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tonic = "0.12.1"
tonic = "0.12.2"
prost = "0.13.1"
tonic-middleware = "0.2.1"
tonic-middleware = "0.2.2"

[build-dependencies]
tonic-build = "0.12"
tonic-build = "0.12.2"

6 changes: 3 additions & 3 deletions integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "integration_tests"
version = "0.2.1"
version = "0.2.2"
edition = "2021"

[lib]
path = "src/lib.rs"

[dependencies]
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tonic = "0.12.1"
tonic = "0.12.2"
prost = "0.13.1"

[dependencies.tonic-middleware]
path = ".."

[build-dependencies]
tonic-build = "0.12.1"
tonic-build = "0.12.2"

[dev-dependencies]
tokio = { version = "1.36.0", features = ["full", "test-util"] }
Expand Down

0 comments on commit b6d6fbc

Please sign in to comment.