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
122 changes: 70 additions & 52 deletions Cargo.lock

Large diffs are not rendered by default.

15 changes: 3 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ web-sys = { version = "0.3.102", features = [
"WritableStream",
"WritableStreamDefaultWriter",
] }
worker = { version = "0.8.4", path = "worker", features = ["queue", "d1", "axum", "timezone"] }
worker = { version = "0.8.5", path = "worker", features = ["queue", "d1", "axum", "timezone"] }
worker-codegen = { path = "worker-codegen", version = "0.2.0" }
worker-macros = { version = "0.8.4", path = "worker-macros", features = ["queue"] }
worker-sys = { version = "0.8.4", path = "worker-sys", features = ["d1", "queue"] }
worker-macros = { version = "0.8.5", path = "worker-macros", features = ["queue"] }
worker-sys = { version = "0.8.5", path = "worker-sys", features = ["d1", "queue"] }

[profile.release]
# rustc supports two "optimize for size" levels: opt-level = "s" and "z".
Expand All @@ -105,12 +105,3 @@ opt-level = "z"

# These are local patches we use to test against local wasm bindgen
# We always align on the exact stable wasm bindgen version for releases
[patch.crates-io]
js-sys = { version = "0.3.102", path = './wasm-bindgen/crates/js-sys' }
wasm-bindgen = { version = "0.2.125", path = './wasm-bindgen' }
wasm-bindgen-cli-support = { version = "0.2.125", path = "./wasm-bindgen/crates/cli-support" }
wasm-bindgen-futures = { version = "0.4.75", path = './wasm-bindgen/crates/futures' }
wasm-bindgen-macro-support = { version = "0.2.125", path = "./wasm-bindgen/crates/macro-support" }
wasm-bindgen-shared = { version = "0.2.125", path = "./wasm-bindgen/crates/shared" }
wasm-bindgen-test = { version = "0.3.75", path = "./wasm-bindgen/crates/test" }
web-sys = { version = "0.3.102", path = './wasm-bindgen/crates/web-sys' }
2 changes: 1 addition & 1 deletion benchmark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "workers-rs-benchmark"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "signal-test"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
authors = ["Logan Gatlin <lgatlin@cloudflare.com>"]

Expand Down
2 changes: 1 addition & 1 deletion test/container-echo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "container-echo"
version = "0.3.4"
version = "0.3.5"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion worker-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
edition = "2021"
name = "worker-build"
version = "0.8.4"
version = "0.8.5"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-build"
readme = "README.md"
Expand Down
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.8.4"
version = "0.8.5"
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2021"
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 <workers@cloudflare.com>"]
edition = "2021"
version = "0.8.4"
version = "0.8.5"
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.8.4"
version = "0.8.5"
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2021"
Expand Down
Loading