Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ wasm-bindgen-cli-support = "0.2.100"
wasm-bindgen-futures = "0.4.50"
wasm-bindgen-macro-support = "0.2.100"
wasm-bindgen-test = "0.3.50"
worker = { path = "worker", version = "0.5.0", features = ["queue", "d1", "axum", "timezone"] }
worker = { path = "worker", version = "0.6.0", features = ["queue", "d1", "axum", "timezone"] }
worker-kv = { path = "worker-kv", version = "0.7.0" }
worker-macros = { path = "worker-macros", version = "0.5.0", features = ["queue"] }
worker-sys = { path = "worker-sys", version = "0.5.0", features = ["d1", "queue"] }
worker-macros = { path = "worker-macros", version = "0.6.0", features = ["queue"] }
worker-sys = { path = "worker-sys", version = "0.6.0", features = ["d1", "queue"] }

[profile.release]
# rustc supports two "optimize for size" levels: opt-level = "s" and "z".
Expand Down
4 changes: 2 additions & 2 deletions templates/axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ wasm-opt = false
crate-type = ["cdylib"]

[dependencies]
worker = { version = "0.5.0", features = ['http', 'axum'] }
worker-macros = { version = "0.5.0", features = ['http'] }
worker = { version = "0.6.0", features = ['http', 'axum'] }
worker-macros = { version = "0.6.0", features = ['http'] }
axum = { version = "0.8", default-features = false }
tower-service = "0.3.3"
console_error_panic_hook = { version = "0.1.7" }
4 changes: 2 additions & 2 deletions templates/hello-world-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ wasm-opt = false
crate-type = ["cdylib"]

[dependencies]
worker = { version = "0.5.0", features = ['http'] }
worker-macros = { version = "0.5.0", features = ['http'] }
worker = { version = "0.6.0", features = ['http'] }
worker-macros = { version = "0.6.0", features = ['http'] }
console_error_panic_hook = { version = "0.1.7" }
http = "1.3"
4 changes: 2 additions & 2 deletions templates/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ wasm-opt = false
crate-type = ["cdylib"]

[dependencies]
worker = { version = "0.5.0" }
worker-macros = { version = "0.5.0" }
worker = { version = "0.6.0" }
worker-macros = { version = "0.6.0" }
console_error_panic_hook = { version = "0.1.7" }
2 changes: 1 addition & 1 deletion worker-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker-macros"
version = "0.5.0"
version = "0.6.0"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion worker-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "worker-sys"
authors = ["Cloudflare Workers Team <[email protected]>"]
edition = "2018"
version = "0.5.0"
version = "0.6.0"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-sys"
description = "Low-level extern definitions / FFI bindings to the Cloudflare Workers JS Runtime."
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker"
version = "0.5.0"
version = "0.6.0"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2018"
Expand Down
Loading