-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
38 lines (31 loc) · 1.02 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
[package]
name = "pasts"
version = "0.14.3"
license = "Apache-2.0 OR BSL-1.0 OR MIT"
description = "Minimal asynchronous runtime for Rust"
repository = "https://github.com/ardaku/pasts"
documentation = "https://docs.rs/pasts"
homepage = "https://github.com/ardaku/pasts/blob/stable/CHANGELOG.md"
include = ["/examples/", "/README.md", "/src/"]
keywords = ["futures", "platform-agnostic", "cross-platform", "io", "executor"]
categories = ["asynchronous", "embedded", "no-std", "rust-patterns", "wasm"]
readme = "README.md"
edition = "2021"
autobins = false
[dependencies.wasm-bindgen-futures]
version = "0.4"
optional = true
[dev-dependencies]
async_main = { version = "0.4", features = ["pasts"] }
async-std = "1.11"
whisk = "0.13"
[target.'cfg(all(target_arch="wasm32", target_os="unknown"))'.dev-dependencies]
wasm-bindgen = "0.2"
[features]
default = ["std"]
# Target a no-std environment
std = []
# Target the DOM via javascript APIs exposed by wasm-bindgen.
web = ["dep:wasm-bindgen-futures"]
# [patch.crates-io.pasts]
# path = "."