2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2023-03-24 07:46:42 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Testing utilities for the swc project."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/testing/"
|
2023-03-24 07:46:42 +03:00
|
|
|
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"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
[dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
ansi_term = "0.12.1"
|
2023-06-21 06:16:33 +03:00
|
|
|
cargo_metadata = "0.15.4"
|
2023-03-24 07:46:42 +03:00
|
|
|
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"
|
2023-03-24 07:46:42 +03:00
|
|
|
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-03-24 07:46:42 +03:00
|
|
|
|
2023-10-06 03:12:18 +03:00
|
|
|
swc_common = { version = "0.32.2", path = "../swc_common", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"tty-emitter",
|
2023-03-24 07:46:42 +03:00
|
|
|
] }
|
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" }
|