mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
4490e2551d
Changes url from https://swc-project.github.io to https://swc.rs
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[workspace]
|
|
members = ["ecmascript", "ecmascript/jsdoc", "native", "spack", "wasm"]
|
|
|
|
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Speedy web compiler"
|
|
documentation = "https://swc.rs/rustdoc/swc/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "swc"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
base64 = "0.12.0"
|
|
dashmap = "3"
|
|
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 = {path = "./atoms"}
|
|
swc_common = {path = "./common", features = ["sourcemap", "concurrent"]}
|
|
swc_ecma_ast = {path = "./ecmascript/ast"}
|
|
swc_ecma_codegen = {path = "./ecmascript/codegen"}
|
|
swc_ecma_ext_transforms = {path = "./ecmascript/ext-transforms"}
|
|
swc_ecma_parser = {path = "./ecmascript/parser"}
|
|
swc_ecma_preset_env = {path = "./ecmascript/preset_env"}
|
|
swc_ecma_transforms = {path = "./ecmascript/transforms", features = ["const-modules", "react"]}
|
|
swc_ecma_visit = {path = "./ecmascript/visit"}
|
|
swc_visit = {path = "./visit"}
|
|
|
|
[dev-dependencies]
|
|
rayon = "1"
|
|
testing = {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
|