mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
c0b0337d1d
swc_ecma_parser: - Fix parsing of complex arrow expressions in a conditional expression. (#2174) - Report an error for wrong jsx, instead of `panic!`. (#2173) swc_ecma_transforms_react: - `jsx`: Handle fragment with single child correctly. (#2177) swc: - Ensure that #2170 is an invalid issue. (#2170)
98 lines
2.6 KiB
TOML
98 lines
2.6 KiB
TOML
[workspace]
|
|
members = [
|
|
"css",
|
|
"css/stylis",
|
|
"ecmascript",
|
|
"ecmascript/babel/compat",
|
|
"ecmascript/jsdoc",
|
|
"node/binding",
|
|
"plugin",
|
|
"plugin/runner",
|
|
"plugin/testing",
|
|
"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.46.1"
|
|
|
|
[lib]
|
|
name = "swc"
|
|
|
|
[features]
|
|
default = ["es3"]
|
|
# You can disable this feautre to reduce binary size.
|
|
es3 = []
|
|
|
|
[dependencies]
|
|
ahash = "0.7.2"
|
|
anyhow = "1"
|
|
base64 = "0.13.0"
|
|
dashmap = "4.0.2"
|
|
either = "1"
|
|
fxhash = "0.2.1"
|
|
log = {version = "0.4", features = ["release_max_level_info"]}
|
|
lru = "0.6.1"
|
|
once_cell = "1"
|
|
pathdiff = "0.2.0"
|
|
regex = "1"
|
|
serde = {version = "1", features = ["derive"]}
|
|
serde_json = "1"
|
|
sourcemap = "6"
|
|
swc_atoms = {version = "0.2", path = "./atoms"}
|
|
swc_bundler = {version = "0.55.0", path = "./bundler"}
|
|
swc_common = {version = "0.11.6", path = "./common", features = ["sourcemap", "concurrent"]}
|
|
swc_ecma_ast = {version = "0.50.0", path = "./ecmascript/ast"}
|
|
swc_ecma_codegen = {version = "0.68.0", path = "./ecmascript/codegen"}
|
|
swc_ecma_ext_transforms = {version = "0.26.0", path = "./ecmascript/ext-transforms"}
|
|
swc_ecma_loader = {version = "0.16.0", path = "./ecmascript/loader", features = ["lru", "node", "tsc"]}
|
|
swc_ecma_minifier = {version = "0.23.0", path = "./ecmascript/minifier"}
|
|
swc_ecma_parser = {version = "0.68.0", path = "./ecmascript/parser"}
|
|
swc_ecma_preset_env = {version = "0.39.0", path = "./ecmascript/preset-env"}
|
|
swc_ecma_transforms = {version = "0.68.0", path = "./ecmascript/transforms", features = [
|
|
"compat",
|
|
"module",
|
|
"optimization",
|
|
"proposal",
|
|
"react",
|
|
"typescript",
|
|
]}
|
|
swc_ecma_transforms_base = {version = "0.28.0", path = "./ecmascript/transforms/base"}
|
|
swc_ecma_utils = {version = "0.42.0", path = "./ecmascript/utils"}
|
|
swc_ecma_visit = {version = "0.36.0", path = "./ecmascript/visit"}
|
|
swc_ecmascript = {version = "0.59.0", path = "./ecmascript"}
|
|
swc_node_base = {version = "0.2.2", path = "./node/base"}
|
|
swc_visit = {version = "0.2.3", path = "./visit"}
|
|
|
|
[dev-dependencies]
|
|
rayon = "1"
|
|
testing = {version = "0.12.2", path = "./testing"}
|
|
walkdir = "2"
|
|
|
|
[[example]]
|
|
name = "usage"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
# debug = true
|
|
# opt-level = 'z'
|
|
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
debug = true
|
|
|
|
# Without this, printing diff consumes more than a minute.
|
|
|
|
[profile.dev.package.pretty_assertions]
|
|
opt-level = 3
|
|
|
|
[profile.test.package.pretty_assertions]
|
|
opt-level = 3
|