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.
42 lines
1.1 KiB
42 lines
1.1 KiB
5 years ago
|
[package]
|
||
|
name = "boa_cli"
|
||
2 years ago
|
keywords = ["javascript", "compiler", "js", "cli"]
|
||
5 years ago
|
categories = ["command-line-utilities"]
|
||
4 years ago
|
default-run = "boa"
|
||
2 years ago
|
description.workspace = true
|
||
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
license.workspace = true
|
||
|
repository.workspace = true
|
||
|
rust-version.workspace = true
|
||
5 years ago
|
|
||
|
[dependencies]
|
||
2 years ago
|
boa_engine = { workspace = true, features = ["deser", "flowgraph", "trace"] }
|
||
2 years ago
|
boa_parser.workspace = true
|
||
2 years ago
|
boa_gc.workspace = true
|
||
2 years ago
|
boa_runtime.workspace = true
|
||
11 months ago
|
rustyline = { version = "13.0.0", features = ["derive"]}
|
||
1 year ago
|
clap = { workspace = true, features = ["derive"] }
|
||
|
serde_json.workspace = true
|
||
|
colored.workspace = true
|
||
|
regex.workspace = true
|
||
|
phf = { workspace = true, features = ["macros"] }
|
||
|
pollster.workspace = true
|
||
1 year ago
|
dhat = { version = "0.3.2", optional = true }
|
||
5 years ago
|
|
||
2 years ago
|
[features]
|
||
1 year ago
|
default = ["boa_engine/annex-b", "boa_engine/experimental", "boa_engine/intl"]
|
||
1 year ago
|
dhat = ["dep:dhat"]
|
||
2 years ago
|
|
||
5 years ago
|
[target.x86_64-unknown-linux-gnu.dependencies]
|
||
1 year ago
|
jemallocator.workspace = true
|
||
5 years ago
|
|
||
5 years ago
|
[[bin]]
|
||
|
name = "boa"
|
||
5 years ago
|
doc = false
|
||
5 years ago
|
path = "src/main.rs"
|
||
12 months ago
|
|
||
|
[lints]
|
||
|
workspace = true
|