2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-04-18 08:51:48 -04:00
|
|
|
[package]
|
2021-05-19 13:41:23 -04:00
|
|
|
name = "deno_bench_util"
|
2022-02-16 18:57:40 -05:00
|
|
|
version = "0.31.0"
|
2021-04-18 08:51:48 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-04-18 08:51:48 -04:00
|
|
|
license = "MIT"
|
2021-08-02 10:19:27 -04:00
|
|
|
publish = true
|
2021-04-18 08:51:48 -04:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Bench and profiling utilities for deno crates"
|
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"
|
2022-02-16 18:57:40 -05:00
|
|
|
deno_core = { version = "0.119.0", path = "../core" }
|
2021-09-02 17:38:44 -04:00
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-05-19 13:41:23 -04:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "op_baseline"
|
|
|
|
harness = false
|
2022-02-23 12:51:13 -05:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "utf8"
|
|
|
|
harness = false
|