diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index d749a3b0..c7cffac6 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -35,7 +35,7 @@ tower-http = { version = "0.6.0", optional = true, features = ["limit"] } tracing = { version = "0.1.37", default-features = false, optional = true } [dev-dependencies] -axum = { path = "../axum", version = "0.8.0-alpha.1" } +axum = { path = "../axum" } axum-extra = { path = "../axum-extra", features = ["typed-header"] } futures-util = { version = "0.3", default-features = false, features = ["alloc"] } hyper = "1.0.0" diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index a8c2fcbc..71a75c81 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -71,7 +71,7 @@ tokio-util = { version = "0.7", optional = true } tracing = { version = "0.1.37", default-features = false, optional = true } [dev-dependencies] -axum = { path = "../axum", version = "0.8.0-alpha.1" } +axum = { path = "../axum" } hyper = "1.0.0" reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart"] } serde = { version = "1.0", features = ["derive"] } diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index ae142b5d..44e8e357 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -29,8 +29,8 @@ syn = { version = "2.0", features = [ ] } [dev-dependencies] -axum = { path = "../axum", version = "0.8.0-alpha.1", features = ["macros"] } -axum-extra = { path = "../axum-extra", version = "0.10.0-alpha.1", features = ["typed-routing", "cookie-private", "typed-header"] } +axum = { path = "../axum", features = ["macros"] } +axum-extra = { path = "../axum-extra", features = ["typed-routing", "cookie-private", "typed-header"] } rustversion = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 5b9c550d..c4f7513b 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -111,7 +111,7 @@ features = [ [dev-dependencies] anyhow = "1.0" -axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", features = ["__private"] } +axum-macros = { path = "../axum-macros", features = ["__private"] } quickcheck = "1.0" quickcheck_macros = "1.0" reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart"] }