mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
584 B
19 lines
584 B
[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.1", optional = true } |
|
once_cell = { version = "1.17.1", optional = true } |
|
rustc-hash = { version = "1.1.0", optional = true }
|
|
|