swc/crates/swc_fast_ts_strip/Cargo.toml
2024-08-01 10:51:23 +00:00

38 lines
1.4 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Super-fast TypeScript stripper based on SWC"
documentation = "https://rustdoc.swc.rs/swc_fast_type_strip/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_fast_ts_strip"
repository = { workspace = true }
version = "0.4.5"
[dependencies]
anyhow = { workspace = true }
serde = { workspace = true, features = ["derive"] }
wasm-bindgen = { workspace = true, optional = true }
swc_allocator = { version = "0.1.7", path = "../swc_allocator", default-features = false }
swc_common = { version = "0.36.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "0.117.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.154.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.148.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.143.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_typescript = { version = "0.194.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_visit = { version = "0.103.0", path = "../swc_ecma_visit" }
[dev-dependencies]
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
testing = { version = "0.38.0", path = "../testing" }
[[bench]]
harness = false
name = "assets"