mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
753b60dd9b
Bumped versions for 1.26.1 Please ensure: - [x] Target branch is correct - [x] Crate versions are bumped correctly - [x] deno_std version is incremented in the code (see `cli/deno_std.rs`) - [x] Releases.md is updated correctly To make edits to this PR: ```shell git fetch upstream release_1_26.1 && git checkout -b release_1_26.1 upstream/release_1_26.1 ``` cc @cjihrig Co-authored-by: cjihrig <cjihrig@users.noreply.github.com>
28 lines
607 B
TOML
28 lines
607 B
TOML
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
[package]
|
|
name = "deno_bench_util"
|
|
version = "0.66.0"
|
|
authors = ["the Deno authors"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
publish = true
|
|
readme = "README.md"
|
|
repository = "https://github.com/denoland/deno"
|
|
description = "Bench and profiling utilities for deno crates"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bencher = "0.1"
|
|
deno_core = { version = "0.154.0", path = "../core" }
|
|
once_cell = "1.10.0"
|
|
tokio = { version = "1.21", features = ["full"] }
|
|
|
|
[[bench]]
|
|
name = "op_baseline"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "utf8"
|
|
harness = false
|