[package]
name = "dumpling"
version = "0.1.0"
edition = "2024"
authors = ["Ying Kit WONG"]
description = "A fast JavaScript runtime and bundler in Rust"
license = "Apache-2.0"
repository = "https://github.com/yingkitw/dumpling"
categories = ["development-tools"]
keywords = ["javascript", "bundler", "runtime"]
homepage = "https://github.com/yingkitw/dumpling"
documentation = "https://docs.rs/dumpling"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
boa_engine = "0.17"
boa_runtime = "0.17"
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
dirs = "5.0"
reqwest = { version = "0.11", features = ["json", "stream"] }
tar = "0.4"
flate2 = "1.0"
futures = "0.3"
async-recursion = "1.0"
pathdiff = "0.2"
regex = "1.10"
futures-util = "0.3"
notify = "6.1"
[dev-dependencies]
tempfile = "3.0"
criterion = "0.5"
[[bin]]
name = "dumpling"
path = "src/main.rs"
[lib]
name = "dumpling"
path = "src/lib.rs"