Files
secure-javascript-container/javascript-engine/external/boa/boa_profiler/Cargo.toml
2023-01-20 22:36:19 +08:00

20 lines
584 B
TOML

[package]
name = "boa_profiler"
description = "Profiler for the Boa JavaScript engine."
keywords = ["javascript", "js", "compiler", "profiler"]
categories = ["development-tools::profiling"]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[features]
profiler = ["measureme", "once_cell", "rustc-hash"]
[dependencies]
measureme = { version = "10.1.0", optional = true }
once_cell = { version = "1.17.0", optional = true }
rustc-hash = { version = "1.1.0", optional = true }