wasm-timer/Cargo.toml

21 lines
658 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-08-29 10:04:41 +02:00
version = "0.2.1"
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]
futures-preview = "0.3.0-alpha"
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-04-18 17:11:49 +02:00
[target.'cfg(any(target_arch = "wasm32"))'.dependencies]
2019-06-25 11:19:14 +02:00
js-sys = "0.3.14"
2019-04-18 17:11:49 +02:00
send_wrapper = "0.2"
2019-07-23 14:15:31 +02:00
wasm-bindgen = { version = "0.2.37" }
wasm-bindgen-futures = { version = "0.3.25", features = ["futures_0_3"] }
2019-04-18 17:11:49 +02:00
web-sys = { version = "0.3.14", features = ["Performance", "Window"] }