swc/ecmascript/Cargo.toml
alubbe 45604fa6e7 Remove dependency renaming to enable WASM (#625)
This PR supercedes https://github.com/swc-project/swc/pull/621 and tries to remove dependency renaming to enable WASM, as discussed in https://github.com/swc-project/swc/issues/106
2020-02-05 11:20:25 +00:00

21 lines
614 B
TOML

[package]
name = "swc_ecmascript"
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_ecmascript/"
description = "Ecmascript"
publish = false
edition = "2018"
[dependencies]
swc_ecma_ast = { path ="./ast" }
swc_ecma_codegen = { path ="./codegen" }
swc_ecma_parser = { path ="./parser", features = ["verify"] }
swc_ecma_preset_env = { path ="preset_env" }
swc_ecma_utils = { path ="./utils" }
swc_ecma_transforms = { path ="./transforms" }
[dev-dependencies]