swc/crates/testing/Cargo.toml

22 lines
663 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/"
2021-12-30 12:59:18 +03:00
edition = "2021"
2021-12-01 08:20:52 +03:00
license = "Apache-2.0"
name = "testing"
repository = "https://github.com/swc-project/swc.git"
2022-02-11 11:46:34 +03:00
version = "0.18.1"
[dependencies]
ansi_term = "0.12.1"
difference = "2"
once_cell = "1"
pretty_assertions = "0.7.2"
regex = "1"
serde_json = "1.0.71"
2022-01-12 12:39:56 +03:00
swc_common = {version = "0.17.0", path = "../swc_common", features = ["tty-emitter"]}
testing_macros = {version = "0.2.0", path = "../testing_macros"}
tracing = "0.1.28"
2021-12-30 12:59:18 +03:00
tracing-subscriber = {version = "0.3.4", features = ["env-filter"]}