-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
45 lines (37 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "wasm-rs-async-executor"
version = "0.9.1-dev"
authors = ["Yurii Rashkovskii <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Async executor for WebAssembly"
repository = "https://github.com/wasm-rs/async-executor"
documentation = "https://docs.rs/wasm-rs-async-executor"
readme = "README.md"
keywords = ["wasm", "async"]
[lib]
crate-type = ["cdylib","lib"]
[dependencies]
futures = { version = "0.3.12", features = ["std"] }
pin-project = { version = "1.0.5", optional = true }
[target.wasm32-unknown-unknown.dependencies]
js-sys = { version = "0.3.47", optional = true }
wasm-bindgen = { version = "0.2.70", optional = true }
web-sys = { version = "0.3.47", optional = true }
[target.wasm32-unknown-unknown.dev-dependencies]
wasm-bindgen-test = "0.3"
[dev-dependencies]
tokio = { version = "1.1.1", features = ["sync", "rt"] }
[features]
default = []
debug = []
cooperative = ["js-sys", "wasm-bindgen", "pin-project"]
cooperative-browser = ["cooperative"]
# Experimental:
# https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback
requestIdleCallback = ["cooperative-browser", "web-sys/IdleDeadline"]
[package.metadata.docs.rs]
all-features = true
[package.metadata.wasm.rs]
targets = ["wasm32-unknown-unknown", "wasm32-wasi"]
wasm-readme = "README.md"