Bump workers-rs to 0.0.18

This commit is contained in:
Tony Giorgio
2023-08-10 08:12:58 -05:00
parent 2bee843885
commit faa2cc2234
2 changed files with 5 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
name = "blastr" name = "blastr"
version = "0.0.0" version = "0.0.0"
edition = "2018" edition = "2018"
resolver = "2"
[lib] [lib]
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
@@ -11,7 +12,7 @@ default = ["console_error_panic_hook"]
[dependencies] [dependencies]
cfg-if = "0.1.2" cfg-if = "0.1.2"
worker = { version = "0.0.13", features = ["queue"] } worker = { version = "0.0.18", features = ["queue"] }
futures = "0.3.26" futures = "0.3.26"
futures-util = { version = "0.3", default-features = false } futures-util = { version = "0.3", default-features = false }
nostr = { version = "0.22.0", default-features = false, features = ["nip11"] } nostr = { version = "0.22.0", default-features = false, features = ["nip11"] }

View File

@@ -30,11 +30,11 @@ kv_namespaces = [
] ]
[env.staging.vars] [env.staging.vars]
WORKERS_RS_VERSION = "0.0.13" WORKERS_RS_VERSION = "0.0.18"
ENVIRONMENT = "staging" ENVIRONMENT = "staging"
[vars] [vars]
WORKERS_RS_VERSION = "0.0.13" WORKERS_RS_VERSION = "0.0.18"
ENVIRONMENT = "production" ENVIRONMENT = "production"
# Replace with all the queues you created, if you named them different. # Replace with all the queues you created, if you named them different.
@@ -172,4 +172,4 @@ ENVIRONMENT = "production"
binding = "nostr-events-pub-10-b" binding = "nostr-events-pub-10-b"
[build] [build]
command = "cargo install -q worker-build --version 0.0.9 && worker-build --release" command = "cargo install -q worker-build --version 0.0.10 && worker-build --release"