2021-12-19 15:07:51 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2021-12-19 15:07:51 +03:00
|
|
|
description = "Linter for the swc project"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_lints"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-11-13 13:03:57 +03:00
|
|
|
version = "0.89.31"
|
2021-12-19 15:07:51 +03:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-19 15:07:51 +03:00
|
|
|
[dependencies]
|
2023-06-22 10:40:41 +03:00
|
|
|
auto_impl = "1.1.0"
|
2023-06-22 16:37:35 +03:00
|
|
|
dashmap = "5.4.0"
|
2023-06-22 10:40:41 +03:00
|
|
|
parking_lot = "0.12.1"
|
|
|
|
rayon = "1.7.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
regex = "1"
|
|
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
|
|
|
2023-11-09 06:48:08 +03:00
|
|
|
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
|
|
|
|
swc_common = { version = "0.33.8", path = "../swc_common", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"concurrent",
|
2022-04-09 11:16:20 +03:00
|
|
|
] }
|
2023-06-22 16:40:52 +03:00
|
|
|
swc_config = { version = "0.1.7", path = "../swc_config" }
|
2023-11-09 06:48:08 +03:00
|
|
|
swc_ecma_ast = { version = "0.110.9", path = "../swc_ecma_ast", features = [
|
2023-03-27 07:28:42 +03:00
|
|
|
"serde",
|
|
|
|
] }
|
2023-11-13 13:03:57 +03:00
|
|
|
swc_ecma_utils = { version = "0.124.27", path = "../swc_ecma_utils" }
|
2023-11-09 06:48:08 +03:00
|
|
|
swc_ecma_visit = { version = "0.96.9", path = "../swc_ecma_visit" }
|
2022-01-05 05:59:10 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-11-13 13:03:57 +03:00
|
|
|
swc_ecma_codegen = { version = "0.146.25", path = "../swc_ecma_codegen" }
|
|
|
|
swc_ecma_parser = { version = "0.141.22", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_base = { version = "0.134.31", path = "../swc_ecma_transforms_base" }
|
2023-11-09 06:48:08 +03:00
|
|
|
testing = { version = "0.35.10", path = "../testing" }
|
2022-02-02 17:43:46 +03:00
|
|
|
|
|
|
|
[features]
|
2022-02-02 17:46:36 +03:00
|
|
|
non_critical_lints = []
|