2018-10-25 07:17:05 +03:00
|
|
|
[package]
|
|
|
|
name = "swc_ecma_codegen"
|
2020-05-17 13:15:31 +03:00
|
|
|
version = "0.21.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_ecma_codegen/"
|
|
|
|
description = "Ecmascript code generator for the swc project."
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1"
|
2019-11-24 08:17:27 +03:00
|
|
|
swc_atoms = { version = "0.2", path ="../../atoms" }
|
2020-01-30 17:29:12 +03:00
|
|
|
swc_common = { version = "0.5", path ="../../common" }
|
2020-05-17 13:15:31 +03:00
|
|
|
swc_ecma_ast = { version = "0.20.0", path ="../ast" }
|
2020-03-01 14:05:03 +03:00
|
|
|
swc_ecma_codegen_macros = { version = "0.5", path ="./macros" }
|
2020-02-17 09:56:41 +03:00
|
|
|
sourcemap = "5"
|
2019-12-22 11:14:04 +03:00
|
|
|
num-bigint = { version = "0.2", features = ["serde"] }
|
2020-05-17 13:15:31 +03:00
|
|
|
swc_ecma_parser = { version = "0.23", path ="../parser" }
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-01-30 17:29:12 +03:00
|
|
|
testing = { version = "0.5", path ="../../testing" }
|