mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
688d16f228
swc_atoms: - Add "assert". swc_ecma_ast - Add a field to an import declaration. swc_ecma_parser: - Parse assertions in import statements. - Parse assertions in top-level dynamic imports. - Parse assertions in non-top-level dynamic imports. swc_ecma_transforms: - Fix compilation.
25 lines
905 B
TOML
25 lines
905 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Ecmascript code generator for the swc project."
|
|
documentation = "https://swc.rs/rustdoc/swc_ecma_codegen/"
|
|
edition = "2018"
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc_ecma_codegen"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.36.0"
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
|
sourcemap = "6"
|
|
swc_atoms = {version = "0.2", path = "../../atoms"}
|
|
swc_common = {version = "0.10.0", path = "../../common"}
|
|
swc_ecma_ast = {version = "0.32.0", path = "../ast"}
|
|
swc_ecma_codegen_macros = {version = "0.5", path = "./macros"}
|
|
|
|
[dev-dependencies]
|
|
swc_common = {version = "0.10.0", path = "../../common", features = ["sourcemap"]}
|
|
swc_ecma_parser = {version = "0.38.0", path = "../parser"}
|
|
testing = {version = "0.10.0", path = "../../testing"}
|