1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-13 01:22:20 -05:00
denoland-deno/ext/timers/Cargo.toml

29 lines
748 B
TOML
Raw Normal View History

# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_timers"
2021-08-10 08:19:42 -04:00
version = "0.12.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Timers API implementation for Deno"
[lib]
path = "lib.rs"
[dependencies]
2021-08-10 08:19:42 -04:00
deno_core = { version = "0.96.0", path = "../../core" }
2021-07-09 11:15:50 -04:00
tokio = { version = "1.8.1", features = ["full"] }
[dev-dependencies]
2021-08-10 08:19:42 -04:00
deno_bench_util = { version = "0.8.0", path = "../../bench_util" }
deno_url = { version = "0.14.0", path = "../url" }
deno_web = { version = "0.45.0", path = "../web" }
deno_webidl = { version = "0.14.0", path = "../webidl" }
[[bench]]
name = "timers_ops"
harness = false