2022-03-13 22:07:18 +03:00
|
|
|
[package]
|
2022-08-14 10:48:15 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Error reporter implementations for the swc project"
|
2022-03-13 22:07:18 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_error_reporters/"
|
2022-08-14 10:48:15 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_error_reporters"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-11-01 10:35:29 +03:00
|
|
|
version = "4.0.0"
|
2022-03-13 22:07:18 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-03-13 22:07:18 +03:00
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
anyhow = { workspace = true }
|
2024-07-05 09:19:35 +03:00
|
|
|
miette = { workspace = true, features = ["fancy-no-syscall"] }
|
2024-04-29 03:54:45 +03:00
|
|
|
once_cell = { workspace = true }
|
|
|
|
parking_lot = { workspace = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-11-01 10:35:29 +03:00
|
|
|
swc_common = { version = "3.0.0", path = "../swc_common", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"concurrent",
|
2022-04-25 17:11:22 +03:00
|
|
|
] }
|