Skip to content

Commit

Permalink
feat: update tonic to 0.9 (#420)
Browse files Browse the repository at this point in the history
This commit updates the `console-subscriber` and `tokio-console` crates'
`tonic` dependencies to 0.9. This is not a breaking change to these
crates.
  • Loading branch information
hawkw committed Sep 29, 2023
1 parent 3d6933b commit 48af1ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 69 deletions.
70 changes: 3 additions & 67 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion console-subscriber/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ tokio = { version = "^1.21", features = ["sync", "time", "macros", "tracing"] }
tokio-stream = { version = "0.1", features = ["net"] }
thread_local = "1.1.3"
console-api = { version = "0.4.0", path = "../console-api", features = ["transport"] }
tonic = { version = "0.8", features = ["transport"] }
tonic = { version = "0.9", features = ["transport"] }
tracing-core = "0.1.24"
tracing = "0.1.26"
tracing-subscriber = { version = "0.3.11", default-features = false, features = ["fmt", "registry"] }
Expand Down
2 changes: 1 addition & 1 deletion tokio-console/Cargo.toml
Expand Up @@ -31,7 +31,7 @@ atty = "0.2"
console-api = { version = "0.4.0", path = "../console-api", features = ["transport"] }
clap = { version = "3", features = ["cargo", "derive", "env"] }
tokio = { version = "1", features = ["full", "rt-multi-thread"] }
tonic = { version = "0.8", features = ["transport"] }
tonic = { version = "0.9", features = ["transport"] }
futures = "0.3"
tui = { version = "0.16.0", default-features = false, features = ["crossterm"] }
tower = "0.4.12"
Expand Down

0 comments on commit 48af1ee

Please sign in to comment.