2021-04-20 01:27:36 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-04-18 08:51:48 -04:00
|
|
|
[package]
|
|
|
|
name = "bench_util"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Bench and profiling utilities for deno crates"
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-04-23 09:05:12 -04:00
|
|
|
publish = false
|
2021-04-18 08:51:48 -04:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bencher = "0.1"
|
2021-05-31 13:39:24 -04:00
|
|
|
deno_core = { version = "0.88.1", path = "../core" }
|
2021-05-29 07:18:24 -04:00
|
|
|
tokio = { version = "1.6.1", features = ["full"] }
|