-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (25 loc) · 826 Bytes
/
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
[package]
authors = ["Thomas Sieverding <[email protected]>"]
description = "An efficient way to spawn futures in WASM"
documentation = "https://docs.rs/spawn64"
license = "MIT"
name = "spawn64"
repository = "https://github.com/Bajix/spawn64"
readme = "./README.md"
version = "0.2.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
const-array-init = "1.0"
js-sys = "0.3"
wasm-bindgen = "0.2"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-futures = "0.4"
wasm-bindgen-test = "0.3"
futures-channel = "0.3"
[build]
target = "wasm32-unknown-unknown"
[features]
default = []
# Enable unstable `strict_provenance` language feature. See tracking issue: https://github.com/rust-lang/rust/issues/95228
strict_provenance = []