mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
* Update queues * Update queue bindings * Fix tests and lint * Fix tests * Add support for message batches and retry / message options * Add queue example * Address comments
21 lines
407 B
TOML
21 lines
407 B
TOML
[package]
|
|
name = "queue-on-workers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
# https://github.com/rustwasm/wasm-pack/issues/1247
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
serde = "1"
|
|
worker = { workspace = true, features = ["queue"] }
|
|
wasm-bindgen = { workspace = true }
|
|
js-sys = { workspace = true }
|