swc/crates/testing/Cargo.toml

30 lines
906 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Testing utilities for the swc project."
documentation = "https://rustdoc.swc.rs/testing/"
edition = "2021"
license = "Apache-2.0"
name = "testing"
repository = "https://github.com/swc-project/swc.git"
2023-10-06 03:12:18 +03:00
version = "0.34.2"
[lib]
bench = false
[dependencies]
ansi_term = "0.12.1"
cargo_metadata = "0.15.4"
difference = "2"
2023-06-22 10:40:41 +03:00
once_cell = "1.18.0"
2023-06-22 16:37:35 +03:00
pretty_assertions = "1.3"
regex = "1"
serde_json = "1.0.71"
2023-06-22 10:40:41 +03:00
tracing = "0.1.37"
2023-06-22 16:37:35 +03:00
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2023-10-06 03:12:18 +03:00
swc_common = { version = "0.32.2", path = "../swc_common", features = [
"tty-emitter",
] }
2023-10-06 03:12:18 +03:00
swc_error_reporters = { version = "0.16.2", path = "../swc_error_reporters" }
2023-06-22 10:43:38 +03:00
testing_macros = { version = "0.2.11", path = "../testing_macros" }