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.
36 lines
893 B
36 lines
893 B
[package] |
|
name = "boa_cli" |
|
keywords = ["javascript", "compiler", "js", "cli"] |
|
categories = ["command-line-utilities"] |
|
default-run = "boa" |
|
description.workspace = true |
|
version.workspace = true |
|
edition.workspace = true |
|
authors.workspace = true |
|
license.workspace = true |
|
repository.workspace = true |
|
rust-version.workspace = true |
|
|
|
[dependencies] |
|
boa_engine = { workspace = true, features = ["deser", "console", "flowgraph"] } |
|
boa_ast = { workspace = true, features = ["serde"]} |
|
boa_parser.workspace = true |
|
rustyline = "10.1.0" |
|
rustyline-derive = "0.7.0" |
|
clap = { version = "4.1.1", features = ["derive"] } |
|
serde_json = "1.0.91" |
|
colored = "2.0.0" |
|
regex = "1.7.1" |
|
phf = { version = "0.11.1", features = ["macros"] } |
|
|
|
[features] |
|
default = ["intl"] |
|
intl = ["boa_engine/intl"] |
|
|
|
[target.x86_64-unknown-linux-gnu.dependencies] |
|
jemallocator = "0.5.0" |
|
|
|
[[bin]] |
|
name = "boa" |
|
doc = false |
|
path = "src/main.rs"
|
|
|