swc/crates/swc_ecma_codegen/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2021-11-10 13:00:54 +03:00
[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Ecmascript code generator for the swc project."
2021-11-10 13:00:54 +03:00
documentation = "https://rustdoc.swc.rs/swc_ecma_codegen/"
2022-08-11 12:52:44 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_codegen"
repository = "https://github.com/swc-project/swc.git"
2022-10-06 14:38:55 +03:00
version = "0.127.8"
2021-11-10 13:00:54 +03:00
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[dependencies]
2022-08-11 12:52:44 +03:00
memchr = "2.4.1"
num-bigint = { version = "0.4", features = ["serde"] }
once_cell = "1.10.0"
rustc-hash = "1.1.0"
serde = "1.0.127"
2022-08-11 12:52:44 +03:00
sourcemap = "6"
2022-09-29 01:57:51 +03:00
swc_atoms = { version = "0.4.18", path = "../swc_atoms" }
2022-10-06 14:38:55 +03:00
swc_common = { version = "0.29.5", path = "../swc_common" }
swc_ecma_ast = { version = "0.94.5", path = "../swc_ecma_ast" }
2022-06-05 23:22:39 +03:00
swc_ecma_codegen_macros = { version = "0.7.1", path = "../swc_ecma_codegen_macros" }
2022-08-11 12:52:44 +03:00
tracing = "0.1.32"
2021-11-10 13:00:54 +03:00
[dev-dependencies]
base64 = "0.13"
criterion = "0.3"
serde_json = "1"
2022-10-06 14:38:55 +03:00
swc_common = { version = "0.29.5", path = "../swc_common", features = [
"sourcemap",
2022-04-05 12:14:49 +03:00
] }
2022-10-06 14:38:55 +03:00
swc_ecma_parser = { version = "0.122.6", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.20.6", path = "../swc_ecma_testing" }
2022-04-05 12:14:49 +03:00
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
2022-10-06 14:38:55 +03:00
testing = { version = "0.31.5", path = "../testing" }
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "bench"
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "with_parse"