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-11-05 10:09:08 +03:00
|
|
|
version = "0.79.0"
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1"
|
2021-09-29 15:10:38 +03:00
|
|
|
memchr = "2.4.1"
|
2020-09-21 16:53:48 +03:00
|
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
2021-09-29 15:10:38 +03:00
|
|
|
once_cell = "1.8.0"
|
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-10-18 09:43:59 +03:00
|
|
|
swc_common = {version = "0.14.0", path = "../../common"}
|
2021-11-05 10:09:08 +03:00
|
|
|
swc_ecma_ast = {version = "0.57.0", path = "../ast"}
|
2021-09-29 15:10:38 +03:00
|
|
|
swc_ecma_codegen_macros = {version = "0.6.0", path = "./macros"}
|
2021-11-05 10:09:08 +03:00
|
|
|
swc_ecma_parser = {version = "0.77.0", path = "../parser"}
|
2021-10-15 06:49:37 +03:00
|
|
|
tracing = "0.1"
|
2018-10-25 07:17:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-18 09:43:59 +03:00
|
|
|
swc_common = {version = "0.14.0", path = "../../common", features = ["sourcemap"]}
|
|
|
|
swc_node_base = {version = "0.5.0", path = "../../node/base"}
|
|
|
|
testing = {version = "0.15.0", path = "../../testing"}
|