2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
|
|
|
name = "swc_ecmascript"
|
|
|
|
version = "0.1.0"
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
documentation = "https://swc-project.github.io/rustdoc/swc_ecmascript/"
|
|
|
|
description = "Ecmascript"
|
2018-11-19 09:52:06 +03:00
|
|
|
publish = false
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-05 14:20:25 +03:00
|
|
|
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" }
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|