swc/ecmascript/Cargo.toml
Jasper De Sutter 716bfe05b2 Cleanup (#448)
- cargo fix
- update all crates to 2018 edition
2019-11-17 13:21:53 +09:00

20 lines
569 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_transforms = { path ="./transforms" }
swc_ecma_lints = { path ="./lints" }
[dev-dependencies]