37 lines
893 B
TOML
37 lines
893 B
TOML
[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.1"
|
|
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"
|