Skip to content

Commit f4185bf

Browse files
committed
chore(router): Update to axum 0.8
1 parent 5cac15e commit f4185bf

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

tonic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ hyper-util = { version = "0.1.4", features = ["tokio"], optional = true }
8888
socket2 = { version = "0.5", optional = true, features = ["all"] }
8989
tokio = {version = "1", default-features = false, optional = true}
9090
tower = {version = "0.5", default-features = false, optional = true}
91-
axum = {version = "0.7", default-features = false, optional = true}
91+
axum = {version = "=0.8.0-alpha.1", default-features = false, optional = true}
9292

9393
# rustls
9494
rustls-pki-types = { version = "1.9", features = ["std"], optional = true }

tonic/src/service/router.rs

+19-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ impl RoutesBuilder {
3030
/// Add a new service.
3131
pub fn add_service<S>(&mut self, svc: S) -> &mut Self
3232
where
33-
S: Service<Request<BoxBody>, Error = Infallible> + NamedService + Clone + Send + 'static,
33+
S: Service<Request<BoxBody>, Error = Infallible>
34+
+ NamedService
35+
+ Clone
36+
+ Send
37+
+ Sync
38+
+ 'static,
3439
S::Response: axum::response::IntoResponse,
3540
S::Future: Send + 'static,
3641
{
@@ -57,7 +62,12 @@ impl Routes {
5762
/// Create a new routes with `svc` already added to it.
5863
pub fn new<S>(svc: S) -> Self
5964
where
60-
S: Service<Request<BoxBody>, Error = Infallible> + NamedService + Clone + Send + 'static,
65+
S: Service<Request<BoxBody>, Error = Infallible>
66+
+ NamedService
67+
+ Clone
68+
+ Send
69+
+ Sync
70+
+ 'static,
6171
S::Response: axum::response::IntoResponse,
6272
S::Future: Send + 'static,
6373
{
@@ -72,12 +82,17 @@ impl Routes {
7282
/// Add a new service.
7383
pub fn add_service<S>(mut self, svc: S) -> Self
7484
where
75-
S: Service<Request<BoxBody>, Error = Infallible> + NamedService + Clone + Send + 'static,
85+
S: Service<Request<BoxBody>, Error = Infallible>
86+
+ NamedService
87+
+ Clone
88+
+ Send
89+
+ Sync
90+
+ 'static,
7691
S::Response: axum::response::IntoResponse,
7792
S::Future: Send + 'static,
7893
{
7994
self.router = self.router.route_service(
80-
&format!("/{}/*rest", S::NAME),
95+
&format!("/{}/{{*rest}}", S::NAME),
8196
svc.map_request(|req: Request<axum::body::Body>| req.map(boxed)),
8297
);
8398
self

tonic/src/transport/server/incoming.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl TcpIncoming {
182182
/// # fn main() { } // Cannot have type parameters, hence instead define:
183183
/// # fn run<S>(some_service: S) -> Result<(), Box<dyn Error + Send + Sync>>
184184
/// # where
185-
/// # S: Service<Request<BoxBody>, Response = Response<BoxBody>, Error = Infallible> + NamedService + Clone + Send + 'static,
185+
/// # S: Service<Request<BoxBody>, Response = Response<BoxBody>, Error = Infallible> + NamedService + Clone + Send + Sync + 'static,
186186
/// # S::Future: Send + 'static,
187187
/// # {
188188
/// // Find a free port

tonic/src/transport/server/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ impl<L> Server<L> {
399399
+ NamedService
400400
+ Clone
401401
+ Send
402+
+ Sync
402403
+ 'static,
403404
S::Future: Send + 'static,
404405
L: Clone,
@@ -420,6 +421,7 @@ impl<L> Server<L> {
420421
+ NamedService
421422
+ Clone
422423
+ Send
424+
+ Sync
423425
+ 'static,
424426
S::Future: Send + 'static,
425427
L: Clone,
@@ -737,6 +739,7 @@ impl<L> Router<L> {
737739
+ NamedService
738740
+ Clone
739741
+ Send
742+
+ Sync
740743
+ 'static,
741744
S::Future: Send + 'static,
742745
{
@@ -756,6 +759,7 @@ impl<L> Router<L> {
756759
+ NamedService
757760
+ Clone
758761
+ Send
762+
+ Sync
759763
+ 'static,
760764
S::Future: Send + 'static,
761765
{

0 commit comments

Comments
 (0)