Skip to content

Commit

Permalink
chore: increment crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zebp committed Feb 21, 2023
1 parent b4b9cd1 commit fd21831
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

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 <[email protected]>"]
edition = "2018"
name = "worker-build"
version = "0.0.8"
version = "0.0.9"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-build"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions worker-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker-macros"
version = "0.0.6"
version = "0.0.7"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2018"
Expand All @@ -13,7 +13,7 @@ path = "src/lib.rs"

[dependencies]
async-trait = "0.1.56"
worker-sys = { path = "../worker-sys", version = "0.0.6" }
worker-sys = { path = "../worker-sys", version = "0.0.7" }
syn = "1.0.96"
proc-macro2 = "1.0.39"
quote = "1.0.18"
Expand Down
2 changes: 1 addition & 1 deletion worker-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ http = "0.2.8"
regex = "1.5.6"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
worker = { path = "../worker", version = "0.0.12", features= ["queue"] }
worker = { path = "../worker", version = "0.0.13", features= ["queue"] }
futures-channel = "0.3.21"
futures-util = { version = "0.3.21", default-features = false }
rand = "0.8.5"
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.0.6"
version = "0.0.7"
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
6 changes: 3 additions & 3 deletions worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker"
version = "0.0.12"
version = "0.0.13"
authors = ["Cloudflare Workers Team <[email protected]>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2018"
Expand Down Expand Up @@ -30,8 +30,8 @@ serde-wasm-bindgen = "0.4.3"
wasm-streams = "0.2.3"
web-sys = "0.3.57"
worker-kv = "0.5.1"
worker-macros = { path = "../worker-macros", version = "0.0.6" }
worker-sys = { path = "../worker-sys", version = "0.0.6" }
worker-macros = { path = "../worker-macros", version = "0.0.7" }
worker-sys = { path = "../worker-sys", version = "0.0.7" }

[features]
queue = ["worker-macros/queue", "worker-sys/queue"]

0 comments on commit fd21831

Please sign in to comment.