diff --git a/Cargo.lock b/Cargo.lock index dd0b78d5..17c911f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2301,7 +2301,7 @@ dependencies = [ [[package]] name = "worker" -version = "0.0.17" +version = "0.0.18" dependencies = [ "async-trait", "chrono", @@ -2355,7 +2355,7 @@ dependencies = [ [[package]] name = "worker-macros" -version = "0.0.9" +version = "0.0.10" dependencies = [ "async-trait", "proc-macro2", @@ -2397,7 +2397,7 @@ dependencies = [ [[package]] name = "worker-sys" -version = "0.0.9" +version = "0.0.10" dependencies = [ "cfg-if", "js-sys", diff --git a/worker-macros/Cargo.toml b/worker-macros/Cargo.toml index f0aeca2d..15a511c0 100644 --- a/worker-macros/Cargo.toml +++ b/worker-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker-macros" -version = "0.0.9" +version = "0.0.10" 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.68" -worker-sys = { path = "../worker-sys", version = "0.0.9" } +worker-sys = { path = "../worker-sys", version = "0.0.10" } syn = "2.0.17" proc-macro2 = "1.0.60" quote = "1.0.28" diff --git a/worker-sandbox/Cargo.toml b/worker-sandbox/Cargo.toml index c5530b27..77dec3fa 100644 --- a/worker-sandbox/Cargo.toml +++ b/worker-sandbox/Cargo.toml @@ -26,7 +26,7 @@ http = "0.2.9" regex = "1.8.4" serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" -worker = { path = "../worker", version = "0.0.17", features= ["queue", "d1"] } +worker = { path = "../worker", version = "0.0.18", features= ["queue", "d1"] } futures-channel = "0.3.28" futures-util = { version = "0.3.28", default-features = false } rand = "0.8.5" diff --git a/worker-sys/Cargo.toml b/worker-sys/Cargo.toml index 248ced76..ba19ce1c 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.9" +version = "0.0.10" 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 2be5cc2f..42297d4e 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker" -version = "0.0.17" +version = "0.0.18" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs" edition = "2018" @@ -30,8 +30,8 @@ wasm-bindgen-futures = "0.4.36" serde-wasm-bindgen = "0.5.0" wasm-streams = "0.3.0" worker-kv = "0.6.0" -worker-macros = { path = "../worker-macros", version = "0.0.9" } -worker-sys = { path = "../worker-sys", version = "0.0.9" } +worker-macros = { path = "../worker-macros", version = "0.0.10" } +worker-sys = { path = "../worker-sys", version = "0.0.10" } [dependencies.web-sys] version = "0.3.63"