mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
Release v0.0.20 (#463)
This commit is contained in:
parent
3f1f7836b0
commit
c0bf5cd8d6
26
Cargo.lock
generated
26
Cargo.lock
generated
@ -117,9 +117,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "bumpalo"
|
||||
version = "3.15.3"
|
||||
version = "3.15.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b"
|
||||
checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
|
||||
|
||||
[[package]]
|
||||
name = "byteorder"
|
||||
@ -135,9 +135,9 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.89"
|
||||
version = "1.0.90"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a0ba8f7aaa012f30d5b2861462f6708eccd49c3c39863fe083a308035f63d723"
|
||||
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
@ -147,9 +147,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "chrono"
|
||||
version = "0.4.34"
|
||||
version = "0.4.35"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b"
|
||||
checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
|
||||
dependencies = [
|
||||
"android-tzdata",
|
||||
"iana-time-zone",
|
||||
@ -1024,18 +1024,18 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pin-project"
|
||||
version = "1.1.4"
|
||||
version = "1.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0"
|
||||
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
||||
dependencies = [
|
||||
"pin-project-internal",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pin-project-internal"
|
||||
version = "1.1.4"
|
||||
version = "1.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690"
|
||||
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2470,7 +2470,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "worker"
|
||||
version = "0.0.19"
|
||||
version = "0.0.20"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"chrono",
|
||||
@ -2526,7 +2526,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "worker-macros"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"proc-macro2",
|
||||
@ -2568,7 +2568,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "worker-sys"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"js-sys",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "worker-macros"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
|
||||
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.11" }
|
||||
worker-sys = { path = "../worker-sys", version = "0.0.12" }
|
||||
syn = "2.0.17"
|
||||
proc-macro2 = "1.0.60"
|
||||
quote = "1.0.28"
|
||||
|
||||
@ -26,7 +26,7 @@ http = "1"
|
||||
regex = "1.8.4"
|
||||
serde = { version = "1.0.164", features = ["derive"] }
|
||||
serde_json = "1.0.96"
|
||||
worker = { path = "../worker", version = "0.0.19", features = ["queue", "d1"] }
|
||||
worker = { path = "../worker", version = "0.0.20", features = ["queue", "d1"] }
|
||||
futures-channel = "0.3.28"
|
||||
futures-util = { version = "0.3.28", default-features = false }
|
||||
rand = "0.8.5"
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
name = "worker-sys"
|
||||
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
|
||||
edition = "2018"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
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."
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "worker"
|
||||
version = "0.0.19"
|
||||
version = "0.0.20"
|
||||
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
|
||||
repository = "https://github.com/cloudflare/workers-rs"
|
||||
edition = "2018"
|
||||
@ -33,8 +33,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.11" }
|
||||
worker-sys = { path = "../worker-sys", version = "0.0.11" }
|
||||
worker-macros = { path = "../worker-macros", version = "0.0.12" }
|
||||
worker-sys = { path = "../worker-sys", version = "0.0.12" }
|
||||
|
||||
[dependencies.web-sys]
|
||||
version = "0.3.63"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user