2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Testing utilities for the swc project."
|
2021-03-31 07:09:10 +03:00
|
|
|
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"
|
2020-09-06 09:09:02 +03:00
|
|
|
name = "testing"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-03-14 05:08:47 +03:00
|
|
|
version = "0.19.1"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-06 09:09:02 +03:00
|
|
|
ansi_term = "0.12.1"
|
2020-02-13 05:45:14 +03:00
|
|
|
difference = "2"
|
2022-03-11 17:00:55 +03:00
|
|
|
once_cell = "1.10.0"
|
|
|
|
pretty_assertions = "1.1"
|
2020-09-06 09:09:02 +03:00
|
|
|
regex = "1"
|
2021-11-25 14:16:46 +03:00
|
|
|
serde_json = "1.0.71"
|
2022-03-16 12:58:24 +03:00
|
|
|
swc_common = { version = "0.17.0", path = "../swc_common", features = [
|
|
|
|
"tty-emitter",
|
|
|
|
] }
|
|
|
|
swc_error_reporters = { version = "0.1.0", path = "../swc_error_reporters" }
|
|
|
|
testing_macros = { version = "0.2.0", path = "../testing_macros" }
|
2022-03-10 06:15:49 +03:00
|
|
|
tracing = "0.1.32"
|
2022-03-16 12:58:24 +03:00
|
|
|
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
|