summaryrefslogtreecommitdiff
path: root/bench_util
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-11-22 21:07:35 +0100
committerGitHub <noreply@github.com>2022-11-22 21:07:35 +0100
commit13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch)
tree7455c069643f10bc9de5d6c8993defddeda378fd /bench_util
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'bench_util')
-rw-r--r--bench_util/Cargo.toml17
1 files changed, 9 insertions, 8 deletions
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index 9e48afb65..930c7b447 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -1,23 +1,24 @@
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+
[package]
name = "deno_bench_util"
version = "0.72.0"
-authors = ["the Deno authors"]
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
publish = true
readme = "README.md"
-repository = "https://github.com/denoland/deno"
+repository.workspace = true
description = "Bench and profiling utilities for deno crates"
[lib]
path = "lib.rs"
[dependencies]
-bencher = "0.1"
-deno_core = { version = "0.160.0", path = "../core" }
-once_cell = "1.10.0"
-tokio = { version = "1.21", features = ["full"] }
+bencher.workspace = true
+deno_core.workspace = true
+once_cell.workspace = true
+tokio.workspace = true
[[bench]]
name = "op_baseline"