diff --git a/Cargo.toml b/Cargo.toml index 9e46f5b..c988ba5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ name = "blastr" version = "0.0.0" edition = "2018" +resolver = "2" [lib] crate-type = ["cdylib", "rlib"] @@ -11,7 +12,7 @@ default = ["console_error_panic_hook"] [dependencies] cfg-if = "0.1.2" -worker = { version = "0.0.13", features = ["queue"] } +worker = { version = "0.0.18", features = ["queue"] } futures = "0.3.26" futures-util = { version = "0.3", default-features = false } nostr = { version = "0.22.0", default-features = false, features = ["nip11"] } diff --git a/wrangler.toml b/wrangler.toml index 5001f13..c7f2a3e 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -30,11 +30,11 @@ kv_namespaces = [ ] [env.staging.vars] -WORKERS_RS_VERSION = "0.0.13" +WORKERS_RS_VERSION = "0.0.18" ENVIRONMENT = "staging" [vars] -WORKERS_RS_VERSION = "0.0.13" +WORKERS_RS_VERSION = "0.0.18" ENVIRONMENT = "production" # Replace with all the queues you created, if you named them different. @@ -172,4 +172,4 @@ ENVIRONMENT = "production" binding = "nostr-events-pub-10-b" [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"