forked from jstuczyn/wasm-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (25 loc) · 982 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
[dependencies.futures]
version = "0.3.1"
[dependencies.parking_lot]
version = "=0.12.1"
[dependencies.pin-utils]
version = "0.1.0"
[dev-dependencies.async-std]
version = "1.0"
[package]
authors = ["Pierre Krieger <[email protected]>"]
description = "Abstraction over std::time::Instant and futures-timer that works on WASM"
edition = "2018"
license = "MIT"
name = "wasm-timer"
repository = "https://github.com/tomaka/wasm-timer"
version = "0.2.5"
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dependencies.js-sys]
version = "0.3.31"
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dependencies.wasm-bindgen]
version = "0.2.37"
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dependencies.wasm-bindgen-futures]
version = "0.4.4"
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dependencies.web-sys]
features = ["Performance", "Window", "WorkerGlobalScope"]
version = "0.3.31"