wasm-timer/Cargo.toml

24 lines
648 B
TOML
Raw Normal View History

2019-04-18 17:11:49 +02:00
[package]
name = "wasm-timer"
edition = "2018"
2019-07-23 10:49:13 +02:00
description = "Abstraction over std::time::Instant and futures-timer that works on WASM"
2019-11-20 16:04:07 +01:00
version = "0.2.4"
2019-04-18 17:11:49 +02:00
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
license = "MIT"
repository = "https://github.com/tomaka/wasm-timer"
2019-07-23 10:49:13 +02:00
[dependencies]
2019-11-19 12:14:10 +01:00
futures = "0.3.1"
2019-07-23 14:15:31 +02:00
parking_lot = "0.9"
2019-07-23 10:49:13 +02:00
pin-utils = "0.1.0-alpha.4"
2019-10-10 22:25:47 +02:00
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
2019-11-19 12:14:10 +01:00
js-sys = "0.3.31"
2019-04-18 17:11:49 +02:00
send_wrapper = "0.2"
2019-11-19 12:14:10 +01:00
wasm-bindgen = "0.2.37"
wasm-bindgen-futures = "0.4.4"
web-sys = { version = "0.3.31", features = ["Performance", "Window"] }
[dev-dependencies]
async-std = "1.0"