swc/crates/swc_ecma_codegen/Cargo.toml

56 lines
1.9 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"
version = "1.0.0"
2021-11-10 13:00:54 +03:00
[features]
# This does not enable serde for ast nodes.
serde-impl = ["swc_ecma_ast/serde"]
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[dependencies]
memchr = { workspace = true }
num-bigint = { workspace = true, features = ["serde"] }
once_cell = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
sourcemap = { workspace = true }
tracing = { workspace = true }
swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "1.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "1.0.0", path = "../swc_ecma_codegen_macros" }
2021-11-10 13:00:54 +03:00
[dev-dependencies]
base64 = { workspace = true }
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
serde_json = { workspace = true }
swc_allocator = { version = "1.0.0", path = "../swc_allocator" }
swc_common = { version = "1.0.0", path = "../swc_common", features = [
"sourcemap",
2022-04-05 12:14:49 +03:00
] }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "1.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
testing = { version = "1.0.0", 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"