feat: add dependency
This commit is contained in:
36
javascript-engine/external/boa/boa_cli/Cargo.toml
vendored
Normal file
36
javascript-engine/external/boa/boa_cli/Cargo.toml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
[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"
|
||||
Reference in New Issue
Block a user