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"
|
2024-10-12 10:20:07 +03:00
|
|
|
version = "1.0.0"
|
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]
|
2024-04-29 03:54:45 +03:00
|
|
|
ansi_term = { workspace = true }
|
2024-07-15 13:54:00 +03:00
|
|
|
cargo_metadata = { workspace = true }
|
2024-04-29 03:54:45 +03:00
|
|
|
difference = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-10-12 10:20:07 +03:00
|
|
|
swc_common = { version = "1.0.0", path = "../swc_common", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"tty-emitter",
|
2023-03-24 07:46:42 +03:00
|
|
|
] }
|
2024-10-12 10:20:07 +03:00
|
|
|
swc_error_reporters = { version = "2.0.0", path = "../swc_error_reporters" }
|
|
|
|
testing_macros = { version = "1.0.0", path = "../testing_macros" }
|