diff --git a/Cargo.lock b/Cargo.lock index abed8598..9e2bb3f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2071,7 +2071,7 @@ dependencies = [ [[package]] name = "worker" -version = "0.0.12" +version = "0.0.13" dependencies = [ "async-trait", "chrono", @@ -2097,7 +2097,7 @@ dependencies = [ [[package]] name = "worker-build" -version = "0.0.8" +version = "0.0.9" dependencies = [ "anyhow", "dirs-next", @@ -2123,7 +2123,7 @@ dependencies = [ [[package]] name = "worker-macros" -version = "0.0.6" +version = "0.0.7" dependencies = [ "async-trait", "proc-macro2", @@ -2165,7 +2165,7 @@ dependencies = [ [[package]] name = "worker-sys" -version = "0.0.6" +version = "0.0.7" dependencies = [ "cfg-if", "js-sys", diff --git a/worker-build/Cargo.toml b/worker-build/Cargo.toml index e0d4e969..776bb54c 100644 --- a/worker-build/Cargo.toml +++ b/worker-build/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Cloudflare Workers Team "] 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" diff --git a/worker-macros/Cargo.toml b/worker-macros/Cargo.toml index 4d8e9ec1..20706371 100644 --- a/worker-macros/Cargo.toml +++ b/worker-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker-macros" -version = "0.0.6" +version = "0.0.7" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros" edition = "2018" @@ -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" diff --git a/worker-sandbox/Cargo.toml b/worker-sandbox/Cargo.toml index 5a14e125..fcbc1d5b 100644 --- a/worker-sandbox/Cargo.toml +++ b/worker-sandbox/Cargo.toml @@ -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" diff --git a/worker-sys/Cargo.toml b/worker-sys/Cargo.toml index dc92f81b..ee421538 100644 --- a/worker-sys/Cargo.toml +++ b/worker-sys/Cargo.toml @@ -2,7 +2,7 @@ name = "worker-sys" authors = ["Cloudflare Workers Team "] 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." diff --git a/worker/Cargo.toml b/worker/Cargo.toml index c0ac1e6d..60ba031f 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker" -version = "0.0.12" +version = "0.0.13" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs" edition = "2018" @@ -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"]