mirror of
https://github.com/fluencelabs/wasm-timer
synced 2025-03-15 00:00:49 +00:00
24 lines
648 B
TOML
24 lines
648 B
TOML
[package]
|
|
name = "wasm-timer"
|
|
edition = "2018"
|
|
description = "Abstraction over std::time::Instant and futures-timer that works on WASM"
|
|
version = "0.2.2"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tomaka/wasm-timer"
|
|
|
|
[dependencies]
|
|
futures = "0.3.1"
|
|
parking_lot = "0.9"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
|
|
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
|
|
js-sys = "0.3.31"
|
|
send_wrapper = "0.2"
|
|
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"
|