2018-10-25 07:17:05 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Ecmascript code generator for the swc project."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_codegen/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2020-06-02 13:22:41 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
2020-09-21 16:53:48 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_codegen"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-05-09 16:17:58 +03:00
|
|
|
version = "0.54.0"
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1"
|
2020-09-21 16:53:48 +03:00
|
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
2020-06-20 09:09:57 +03:00
|
|
|
sourcemap = "6"
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_atoms = {version = "0.2", path = "../../atoms"}
|
2021-04-11 09:09:27 +03:00
|
|
|
swc_common = {version = "0.10.16", path = "../../common"}
|
2021-05-09 16:17:58 +03:00
|
|
|
swc_ecma_ast = {version = "0.44.0", path = "../ast"}
|
2021-02-20 09:18:09 +03:00
|
|
|
swc_ecma_codegen_macros = {version = "0.5.2", path = "./macros"}
|
2021-05-09 16:17:58 +03:00
|
|
|
swc_ecma_parser = {version = "0.56.0", path = "../parser"}
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-04-11 09:09:27 +03:00
|
|
|
swc_common = {version = "0.10.16", path = "../../common", features = ["sourcemap"]}
|
|
|
|
testing = {version = "0.10.5", path = "../../testing"}
|