2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-04-14 15:10:48 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_timers"
|
2022-01-06 07:20:42 -05:00
|
|
|
version = "0.29.0"
|
2021-04-14 15:10:48 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
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]
|
2022-01-06 07:20:42 -05:00
|
|
|
deno_core = { version = "0.113.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]
|
2022-01-06 07:20:42 -05:00
|
|
|
deno_bench_util = { version = "0.25.0", path = "../../bench_util" }
|
|
|
|
deno_url = { version = "0.31.0", path = "../url" }
|
|
|
|
deno_web = { version = "0.62.0", path = "../web" }
|
|
|
|
deno_webidl = { version = "0.31.0", path = "../webidl" }
|
2021-05-22 16:52:05 -04:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "timers_ops"
|
|
|
|
harness = false
|