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]
|
2019-12-02 11:10:06 +03:00
|
|
|
ast = { package = "swc_ecma_ast", path ="./ast" }
|
|
|
|
codegen = { package = "swc_ecma_codegen", path ="./codegen" }
|
|
|
|
parser = { package = "swc_ecma_parser", path ="./parser", features = ["verify"] }
|
2019-12-28 05:25:54 +03:00
|
|
|
preset_env = { package = "swc_ecma_preset_env", path ="preset_env" }
|
2020-01-08 04:55:22 +03:00
|
|
|
utils = { package = "swc_ecma_utils", path ="./utils" }
|
|
|
|
transforms = { package = "swc_ecma_transforms", path ="./transforms" }
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|