From 79ce476af039229f30989594b1167e8fbe058c74 Mon Sep 17 00:00:00 2001 From: kflansburg <6134007+kflansburg@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:31:01 +0000 Subject: [PATCH] chore: bump versions --- Cargo.lock | 6 +++--- worker-macros/Cargo.toml | 4 ++-- worker-sandbox/Cargo.toml | 2 +- worker-sys/Cargo.toml | 2 +- worker/Cargo.toml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6020189..0c8eddeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2211,7 +2211,7 @@ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" [[package]] name = "worker" -version = "0.0.22" +version = "0.0.23" dependencies = [ "async-trait", "axum", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "worker-macros" -version = "0.0.14" +version = "0.0.15" dependencies = [ "async-trait", "proc-macro2", @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "worker-sys" -version = "0.0.14" +version = "0.0.15" dependencies = [ "cfg-if", "js-sys", diff --git a/worker-macros/Cargo.toml b/worker-macros/Cargo.toml index 8d625b46..5ec17d46 100644 --- a/worker-macros/Cargo.toml +++ b/worker-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker-macros" -version = "0.0.14" +version = "0.0.15" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros" edition = "2018" @@ -16,7 +16,7 @@ async-trait.workspace = true wasm-bindgen.workspace = true wasm-bindgen-futures.workspace = true wasm-bindgen-macro-support.workspace = true -worker-sys = { path = "../worker-sys", version = "0.0.14" } +worker-sys = { path = "../worker-sys", version = "0.0.15" } 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 f9c4d07b..6baa997b 100644 --- a/worker-sandbox/Cargo.toml +++ b/worker-sandbox/Cargo.toml @@ -32,7 +32,7 @@ http.workspace=true regex = "1.8.4" serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" -worker = { path = "../worker", version = "0.0.22", features = ["queue", "d1"] } +worker = { path = "../worker", version = "0.0.23", features = ["queue", "d1"] } rand = "0.8.5" uuid = { version = "1.3.3", features = ["v4", "serde"] } serde-wasm-bindgen = "0.6.1" diff --git a/worker-sys/Cargo.toml b/worker-sys/Cargo.toml index 5557f189..0ed4348f 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.14" +version = "0.0.15" 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 4e1651a8..87d053ab 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worker" -version = "0.0.22" +version = "0.0.23" authors = ["Cloudflare Workers Team "] repository = "https://github.com/cloudflare/workers-rs" edition = "2018" @@ -36,8 +36,8 @@ serde-wasm-bindgen = "0.6.1" serde_urlencoded = "0.7" wasm-streams = "0.4" worker-kv = "0.6.0" -worker-macros = { path = "../worker-macros", version = "0.0.14" } -worker-sys = { path = "../worker-sys", version = "0.0.14" } +worker-macros = { path = "../worker-macros", version = "0.0.15" } +worker-sys = { path = "../worker-sys", version = "0.0.15" } [dependencies.web-sys] version = "0.3.63"