swc/Cargo.toml
강동윤 d3944f5203
fix(swc): Fix bugs (#1820)
swc_ecma_preset_env:
 - [x] Rename directory to be consistant.
 - [x] Add es2020::operators. (#1812)

swc_ecma_transforms_react:
 - [x] Don't escpae unicodes. (#1782)
2021-06-12 15:39:39 +09:00

69 lines
1.8 KiB
TOML

cargo-features = ["strip"]
[workspace]
members = ["ecmascript", "ecmascript/jsdoc", "native", "spack", "wasm"]
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Speedy web compiler"
documentation = "https://rustdoc.swc.rs/swc/"
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.22.0"
[lib]
name = "swc"
[dependencies]
ahash = "0.7.2"
anyhow = "1"
base64 = "0.12.0"
dashmap = "4.0.2"
either = "1"
log = {version = "0.4", features = ["release_max_level_info"]}
once_cell = "1"
regex = "1"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
sourcemap = "6"
swc_atoms = {version = "0.2", path = "./atoms"}
swc_common = {version = "0.10.16", path = "./common", features = ["sourcemap", "concurrent"]}
swc_ecma_ast = {version = "0.46.0", path = "./ecmascript/ast"}
swc_ecma_codegen = {version = "0.57.0", path = "./ecmascript/codegen"}
swc_ecma_ext_transforms = {version = "0.17.0", path = "./ecmascript/ext-transforms"}
swc_ecma_parser = {version = "0.59.0", path = "./ecmascript/parser"}
swc_ecma_preset_env = {version = "0.22.0", path = "./ecmascript/preset-env"}
swc_ecma_transforms = {version = "0.52.0", path = "./ecmascript/transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
]}
swc_ecma_utils = {version = "0.37.0", path = "./ecmascript/utils"}
swc_ecma_visit = {version = "0.32.0", path = "./ecmascript/visit"}
swc_node_base = {version = "0.1.0", path = "./node/base"}
swc_visit = {version = "0.2.3", path = "./visit"}
[dev-dependencies]
rayon = "1"
testing = {version = "0.10.5", path = "./testing"}
walkdir = "2"
[[example]]
name = "usage"
[profile.release]
codegen-units = 1
lto = true
strip = 'symbols'
# debug = true
# opt-level = 'z'
[profile.bench]
codegen-units = 1
debug = true