mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
1645bb30b7
swc_ecma_ast: - Implement `Take` for `ObjectLit`. - Implement `Take` for `ArrayLit`. swc_ecma_transforms_compat: - `nullish_coalescing`: Remove exponential visit. - `nullish_coalescing`: Migrate to `VisitMut`. - `optional_chaining`: Reduce exponential visit. (But it's not removed) - `class_properties`: Remove exponential visit. - `jsx_src`: Migrate to `VisitMut`. - `optional_chaining`: Mae it parallel. - `async_to_generator`: Remove `#[fast_path]`. - `arrow`: Remove `#[fast_path]`. - `destructuring`: Remove `#[fast_path]`. - `block_scoped_functions`: Remove `#[fast_path]`. - `classes`: Remove `#[fast_path]`.
28 lines
738 B
TOML
28 lines
738 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "wasm module for swc"
|
|
edition = "2018"
|
|
license = "Apache-2.0 AND MIT"
|
|
name = "wasm"
|
|
publish = false
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "1.2.99"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.42"
|
|
console_error_panic_hook = "0.1.6"
|
|
once_cell = "1.3.1"
|
|
parking_lot_core = "=0.8.0"
|
|
path-clean = "0.1"
|
|
serde = {version = "1", features = ["derive"]}
|
|
serde_json = "1"
|
|
swc = {path = "../"}
|
|
swc_common = {path = "../common"}
|
|
swc_ecmascript = {path = "../ecmascript"}
|
|
tracing = {version = "0.1.28", features = ["release_max_level_off"]}
|
|
wasm-bindgen = {version = "0.2", features = ["serde-serialize"]}
|
|
wasm-bindgen-futures = "0.4.8"
|