Skip to content

Commit

Permalink
update axum to 0.8 and tonic to 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Siles committed Jan 2, 2025
1 parent d387918 commit 8c5b747
Show file tree
Hide file tree
Showing 9 changed files with 90 additions and 211 deletions.
178 changes: 21 additions & 157 deletions Cargo.lock

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

23 changes: 17 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
[workspace]
members = ["build", "client", "error", "server", "integration", "example/server", "example/client"]
members = [
"build",
"client",
"error",
"server",
"integration",
"example/server",
"example/client",
]
resolver = "2"

[workspace.package]
Expand All @@ -9,8 +17,8 @@ license = "Apache-2.0"
rust-version = "1.79"

[workspace.dependencies]
axum = { version = "0.7.9", default-features = false }
axum-core-04 = { package = "axum-core", version = "0.4.5" }
axum = { version = "0.8", default-features = false }
axum-core-05 = { package = "axum-core", version = "0.5.0" }
eyre = "0.6.10"
http = "1"
http-body = "1"
Expand All @@ -27,9 +35,12 @@ serde = "1.0.217"
serde_json = "1"
tokio = "1.42"
tokio-stream = "0.1.16"
tonic = { version = "0.12.3", default-features = false }
tonic-012 = { package = "tonic", version = "0.12.3", default-features = false }
tonic-build = "0.12.3"
# tonic = { version = "0.12.3", default-features = false }
tonic = { git = "https://github.com/hyperium/tonic", branch = "master" }
# tonic-012 = { package = "tonic", version = "0.12.3", default-features = false }
tonic-013 = { git = "https://github.com/hyperium/tonic", branch = "master", package = "tonic", version = "0.13.0", default-features = false }
# tonic-build = "0.12.3"
tonic-build = { git = "https://github.com/hyperium/tonic", branch = "master" }
tower-service = "0.3.3"
tower = "0.5.1"
tower-http = "0.6.2"
Expand Down
Loading

0 comments on commit 8c5b747

Please sign in to comment.