swc/Cargo.toml

67 lines
1.7 KiB
TOML
Raw Normal View History

cargo-features = ["strip"]
2017-12-22 15:51:36 +03:00
[workspace]
2020-08-14 12:20:25 +03:00
members = ["ecmascript", "ecmascript/jsdoc", "native", "spack", "wasm"]
2017-12-22 15:51:36 +03:00
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Speedy web compiler"
documentation = "https://rustdoc.swc.rs/swc/"
edition = "2018"
2020-09-18 08:29:50 +03:00
license = "Apache-2.0/MIT"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.16.0"
2017-12-22 15:51:36 +03:00
[lib]
name = "swc"
2017-12-22 15:51:36 +03:00
[dependencies]
2020-03-27 08:40:01 +03:00
anyhow = "1"
2020-09-18 08:29:50 +03:00
base64 = "0.12.0"
dashmap = "4.0.2"
2020-09-18 08:29:50 +03:00
either = "1"
log = {version = "0.4", features = ["release_max_level_info"]}
once_cell = "1"
regex = "1"
2020-09-18 08:29:50 +03:00
serde = {version = "1", features = ["derive"]}
serde_json = "1"
sourcemap = "6"
2021-01-01 07:30:35 +03:00
swc_atoms = {version = "0.2", path = "./atoms"}
swc_common = {version = "0.10.16", path = "./common", features = ["sourcemap", "concurrent"]}
swc_ecma_ast = {version = "0.43.1", path = "./ecmascript/ast"}
swc_ecma_codegen = {version = "0.52.3", path = "./ecmascript/codegen"}
swc_ecma_ext_transforms = {version = "0.12.2", path = "./ecmascript/ext-transforms"}
swc_ecma_parser = {version = "0.54.3", path = "./ecmascript/parser"}
swc_ecma_preset_env = {version = "0.16.0", path = "./ecmascript/preset_env"}
swc_ecma_transforms = {version = "0.46.0", path = "./ecmascript/transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
]}
swc_ecma_utils = {version = "0.34.1", path = "./ecmascript/utils"}
swc_ecma_visit = {version = "0.29.1", path = "./ecmascript/visit"}
swc_visit = {version = "0.2.3", path = "./visit"}
[dev-dependencies]
rayon = "1"
testing = {version = "0.10.5", path = "./testing"}
2020-09-18 08:29:50 +03:00
walkdir = "2"
[[example]]
name = "usage"
[profile.release]
codegen-units = 1
lto = true
strip = 'symbols'
2020-05-23 09:36:04 +03:00
# debug = true
# opt-level = 'z'
[profile.bench]
codegen-units = 1
2020-09-18 08:29:50 +03:00
debug = true