diff --git a/Cargo.toml b/Cargo.toml index c1c17f18..60232baf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ arrow-schema = "53.1.0" assert-json-diff = "2.0" assert_cmd = "2.0" async-stream = "0.3.6" -axum = "0.7.7" +axum = "0.8.1" bb8 = "0.9.0" bb8-postgres = "0.9.0" bytes = "1.7" diff --git a/crates/server/src/routes.rs b/crates/server/src/routes.rs index ee8334d6..1f5ef5cd 100644 --- a/crates/server/src/routes.rs +++ b/crates/server/src/routes.rs @@ -106,9 +106,9 @@ pub fn from_api(api: Api) -> Router { .route("/conformance", get(conformance)) .route("/queryables", get(queryables)) .route("/collections", get(collections)) - .route("/collections/:collection_id", get(collection)) - .route("/collections/:collection_id/items", get(items)) - .route("/collections/:collection_id/items/:item_id", get(item)) + .route("/collections/{collection_id}", get(collection)) + .route("/collections/{collection_id}/items", get(items)) + .route("/collections/{collection_id}/items/{item_id}", get(item)) .route("/search", get(get_search)) .route("/search", post(post_search)) .layer(CorsLayer::permissive()) // TODO make this configurable