diff --git a/templates/axum/Cargo.toml b/templates/axum/Cargo.toml index 20a341b8..873ede99 100644 --- a/templates/axum/Cargo.toml +++ b/templates/axum/Cargo.toml @@ -11,8 +11,8 @@ release = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.6.0", features = ['http', 'axum'] } -worker-macros = { version = "0.6.0", features = ['http'] } +worker = { version = "0.6", features = ['http', 'axum'] } +worker-macros = { version = "0.6", features = ['http'] } axum = { version = "0.8", default-features = false } tower-service = "0.3.3" console_error_panic_hook = { version = "0.1.7" } diff --git a/templates/hello-world-http/Cargo.toml b/templates/hello-world-http/Cargo.toml index f1db2e09..c0193920 100644 --- a/templates/hello-world-http/Cargo.toml +++ b/templates/hello-world-http/Cargo.toml @@ -11,7 +11,7 @@ release = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.6.0", features = ['http'] } -worker-macros = { version = "0.6.0", features = ['http'] } +worker = { version = "0.6", features = ['http'] } +worker-macros = { version = "0.6", features = ['http'] } console_error_panic_hook = { version = "0.1.7" } http = "1.3" diff --git a/templates/hello-world/Cargo.toml b/templates/hello-world/Cargo.toml index 13885029..a4a1c219 100644 --- a/templates/hello-world/Cargo.toml +++ b/templates/hello-world/Cargo.toml @@ -11,6 +11,6 @@ release = false crate-type = ["cdylib"] [dependencies] -worker = { version = "0.6.0" } -worker-macros = { version = "0.6.0" } +worker = { version = "0.6" } +worker-macros = { version = "0.6" } console_error_panic_hook = { version = "0.1.7" }