mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
eb2162cbd2
swc_ecma_codegen: - Fix codegen of large binary expressions. swc_ecma_parser: - Fix stack overflow while parsing large binary expressions. swc_ecma_transforms: - typescrip::strip: Fix stack overflow while handling large binary operations. - hygiene: Fix stack overflow by migrating it to `VisitMut`. - hygiene: Improve performance. - fixer: Fix stack overflow by migrating it to `VisitMut`. - resolver: Migrate to `VisitMut`.
20 lines
537 B
TOML
20 lines
537 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Testing utilities for the swc project."
|
|
documentation = "https://swc-project.github.io/rustdoc/testing/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "testing"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.10.1"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12.1"
|
|
difference = "2"
|
|
env_logger = "0.7.1"
|
|
log = "0.4"
|
|
once_cell = "1"
|
|
pretty_assertions = "0.6.1"
|
|
regex = "1"
|
|
swc_common = {version = "0.10.0", path = "../common", features = ["tty-emitter"]}
|