swc/crates/swc_ecma_codegen/Cargo.toml

44 lines
1.4 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-09-16 09:46:25 +03:00
version = "0.124.14"
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"
sourcemap = "6"
2022-09-16 09:46:25 +03:00
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
swc_common = { version = "0.28.8", path = "../swc_common" }
swc_ecma_ast = { version = "0.91.8", 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]
criterion = "0.3"
2022-09-16 09:46:25 +03:00
swc_common = { version = "0.28.8", path = "../swc_common", features = [
"sourcemap",
2022-04-05 12:14:49 +03:00
] }
2022-09-16 09:46:25 +03:00
swc_ecma_parser = { version = "0.119.12", path = "../swc_ecma_parser" }
2022-04-05 12:14:49 +03:00
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
2022-09-16 09:46:25 +03:00
testing = { version = "0.30.8", 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"