2021-04-20 05:27:36 +00:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-04-18 12:51:48 +00:00
|
|
|
[package]
|
2021-05-19 17:41:23 +00:00
|
|
|
name = "deno_bench_util"
|
2021-07-26 13:45:40 +00:00
|
|
|
version = "0.7.0"
|
2021-04-18 12:51:48 +00:00
|
|
|
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-05-19 19:23:49 +00:00
|
|
|
publish = true
|
2021-04-18 12:51:48 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bencher = "0.1"
|
2021-07-26 13:45:40 +00:00
|
|
|
deno_core = { version = "0.95.0", path = "../core" }
|
2021-07-05 13:50:56 +00:00
|
|
|
tokio = { version = "1.8.0", features = ["full"] }
|
2021-05-19 17:41:23 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "op_baseline"
|
|
|
|
harness = false
|