mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
8c7005d7ab
swc: - Move tests from node-swc to swc - Add integration tests (webpack, rxjs, angular-core) - Support `exclude` swc_ecma_transforms: - More span validation - classes: - Strip `TsIndexSignature` swc_ecma_parser: - Fix span of member expression - Fix span of binary expression - Fix span of unary expression
43 lines
819 B
TOML
43 lines
819 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "swc"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/swc/"
|
|
description = "Speedy web compiler"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "swc"
|
|
|
|
[dependencies]
|
|
swc_atoms = { path ="./atoms" }
|
|
swc_common = { path ="./common" }
|
|
swc_ecmascript = { path ="./ecmascript" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
failure = "0.1"
|
|
path-clean = "0.1"
|
|
lazy_static = "1"
|
|
hashbrown = "0.6"
|
|
regex = "1"
|
|
chashmap = "2.2.2"
|
|
sourcemap = "4.1.1 "
|
|
|
|
[dev-dependencies]
|
|
testing = { path = "./testing" }
|
|
walkdir = "2"
|
|
|
|
[[example]]
|
|
name = "usage"
|
|
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
lto = true
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true |