mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
46 lines
934 B
TOML
46 lines
934 B
TOML
[package]
|
|
name = "worker-sys"
|
|
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
|
|
edition = "2018"
|
|
version = "0.4.2"
|
|
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."
|
|
|
|
[dependencies]
|
|
js-sys.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
cfg-if = "1.0.0"
|
|
|
|
[dependencies.web-sys]
|
|
version = ">=0.3.70"
|
|
features = [
|
|
"ReadableStream",
|
|
"WritableStream",
|
|
"RequestRedirect",
|
|
"RequestInit",
|
|
"FormData",
|
|
"Blob",
|
|
"BinaryType",
|
|
"ErrorEvent",
|
|
"MessageEvent",
|
|
"CloseEvent",
|
|
"ProgressEvent",
|
|
"WebSocket",
|
|
"TransformStream",
|
|
"AbortController",
|
|
"console",
|
|
"ResponseInit",
|
|
"Cache",
|
|
"CacheStorage",
|
|
"CacheQueryOptions",
|
|
"AbortSignal",
|
|
"Headers",
|
|
"Request",
|
|
"Response",
|
|
]
|
|
|
|
[features]
|
|
d1 = []
|
|
queue = []
|