2021-04-14 15:10:48 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_timers"
|
2021-10-05 15:40:39 -04:00
|
|
|
version = "0.18.0"
|
2021-04-14 15:10:48 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
edition = "2018"
|
2021-04-14 15:10:48 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Timers API implementation for Deno"
|
2021-04-14 15:10:48 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-05 15:40:39 -04:00
|
|
|
deno_core = { version = "0.102.0", path = "../../core" }
|
2021-09-02 17:38:44 -04:00
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-05-22 16:52:05 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-05 15:40:39 -04:00
|
|
|
deno_bench_util = { version = "0.14.0", path = "../../bench_util" }
|
|
|
|
deno_url = { version = "0.20.0", path = "../url" }
|
|
|
|
deno_web = { version = "0.51.0", path = "../web" }
|
|
|
|
deno_webidl = { version = "0.20.0", path = "../webidl" }
|
2021-05-22 16:52:05 -04:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "timers_ops"
|
|
|
|
harness = false
|