Skip to content

Commit 5c31380

Browse files
committed
chore: bump versions
1 parent 9808cea commit 5c31380

File tree

9 files changed

+578
-264
lines changed

9 files changed

+578
-264
lines changed

Cargo.lock

+564-250
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/axum/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version="0.4.2", features=['http', 'axum'] }
19-
worker-macros = { version="0.4.2", features=['http'] }
18+
worker = { version="0.5.0", features=['http', 'axum'] }
19+
worker-macros = { version="0.5.0", features=['http'] }
2020
axum = { version = "0.7", default-features = false }
2121
tower-service = "0.3.2"
2222
console_error_panic_hook = { version = "0.1.1" }

templates/hello-world-http/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version="0.4.2", features=['http'] }
19-
worker-macros = { version="0.4.2", features=['http'] }
18+
worker = { version="0.5.0", features=['http'] }
19+
worker-macros = { version="0.5.0", features=['http'] }
2020
console_error_panic_hook = { version = "0.1.1" }
2121
http = "1.1"

templates/hello-world/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ wasm-opt = false
1515
crate-type = ["cdylib"]
1616

1717
[dependencies]
18-
worker = { version="0.4.2" }
19-
worker-macros = { version="0.4.2" }
18+
worker = { version="0.5.0" }
19+
worker-macros = { version="0.5.0" }
2020
console_error_panic_hook = { version = "0.1.1" }

templates/leptos/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ codegen-units = 1
1414
crate-type = ["cdylib"]
1515

1616
[dependencies]
17-
worker = { version="0.4.2", features=['http', 'axum', 'd1'], optional = true }
17+
worker = { version="0.5.0", features=['http', 'axum', 'd1'], optional = true }
1818
axum = { version = "0.7", default-features = false, optional = true }
1919
tower-service = "0.3"
2020
console_error_panic_hook = { version = "0.1" }

worker-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker-macros"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
55
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
66
edition = "2018"
@@ -16,7 +16,7 @@ async-trait.workspace = true
1616
wasm-bindgen.workspace = true
1717
wasm-bindgen-futures.workspace = true
1818
wasm-bindgen-macro-support.workspace = true
19-
worker-sys = { path = "../worker-sys", version = "0.4.2" }
19+
worker-sys = { path = "../worker-sys", version = "0.5.0" }
2020
syn = "2.0.17"
2121
proc-macro2 = "1.0.60"
2222
quote = "1.0.28"

worker-sandbox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ http.workspace=true
3232
regex = "1.8.4"
3333
serde = { version = "1.0.164", features = ["derive"] }
3434
serde_json = "1.0.96"
35-
worker = { path = "../worker", version = "0.4.2", features = ["queue", "d1"] }
35+
worker = { path = "../worker", version = "0.5.0", features = ["queue", "d1"] }
3636
rand = "0.8.5"
3737
uuid = { version = "1.3.3", features = ["v4", "serde"] }
3838
serde-wasm-bindgen = "0.6.1"

worker-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "worker-sys"
33
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
44
edition = "2018"
5-
version = "0.4.2"
5+
version = "0.5.0"
66
license = "Apache-2.0"
77
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-sys"
88
description = "Low-level extern definitions / FFI bindings to the Cloudflare Workers JS Runtime."

worker/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "worker"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
55
repository = "https://github.com/cloudflare/workers-rs"
66
edition = "2018"
@@ -36,8 +36,8 @@ serde-wasm-bindgen = "0.6.1"
3636
serde_urlencoded = "0.7"
3737
wasm-streams = "0.4"
3838
worker-kv = { path = "../worker-kv", version = "0.7.0" }
39-
worker-macros = { path = "../worker-macros", version = "0.4.2" }
40-
worker-sys = { path = "../worker-sys", version = "0.4.2" }
39+
worker-macros = { path = "../worker-macros", version = "0.5.0" }
40+
worker-sys = { path = "../worker-sys", version = "0.5.0" }
4141

4242
[dependencies.chrono-tz]
4343
optional = true

0 commit comments

Comments
 (0)