2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-04-18 14:51:48 +02:00
|
|
|
[package]
|
2021-05-19 19:41:23 +02:00
|
|
|
name = "deno_bench_util"
|
2022-04-28 23:32:42 +02:00
|
|
|
version = "0.44.0"
|
2021-04-18 14:51:48 +02:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 15:03:37 +01:00
|
|
|
edition = "2021"
|
2021-04-18 14:51:48 +02:00
|
|
|
license = "MIT"
|
2021-08-02 10:19:27 -04:00
|
|
|
publish = true
|
2021-04-18 14:51:48 +02: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 14:51:48 +02:00
|
|
|
|
2022-03-24 11:23:40 +01:00
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
2021-04-18 14:51:48 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bencher = "0.1"
|
2022-04-28 23:32:42 +02:00
|
|
|
deno_core = { version = "0.132.0", path = "../core" }
|
2022-04-02 19:54:40 +02:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2021-05-19 19:41:23 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "op_baseline"
|
|
|
|
harness = false
|
2022-02-23 18:51:13 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "utf8"
|
|
|
|
harness = false
|