2021-12-19 15:07:51 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Linter for the swc project"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2022-03-19 13:49:12 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
2021-12-19 15:07:51 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_lints"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-07-09 13:17:04 +03:00
|
|
|
version = "0.52.0"
|
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]
|
2022-03-11 17:00:55 +03:00
|
|
|
ahash = "0.7"
|
2021-12-19 15:07:51 +03:00
|
|
|
auto_impl = "0.5.0"
|
2022-03-11 17:00:55 +03:00
|
|
|
dashmap = "5.1.0"
|
2022-02-17 08:16:14 +03:00
|
|
|
parking_lot = "0.12.0"
|
2021-12-19 15:07:51 +03:00
|
|
|
rayon = "1.5.1"
|
2022-02-09 14:24:58 +03:00
|
|
|
regex = "1"
|
2022-04-09 11:16:20 +03:00
|
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
|
|
swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
|
2022-07-09 13:17:04 +03:00
|
|
|
swc_common = { version = "0.23.0", path = "../swc_common", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"concurrent",
|
2022-04-09 11:16:20 +03:00
|
|
|
] }
|
2022-05-09 08:38:27 +03:00
|
|
|
swc_config = { version = "0.1.0", path = "../swc_config" }
|
2022-07-09 13:17:04 +03:00
|
|
|
swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" }
|
|
|
|
swc_ecma_utils = { version = "0.93.0", path = "../swc_ecma_utils" }
|
|
|
|
swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" }
|
2022-01-05 05:59:10 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-09 13:17:04 +03:00
|
|
|
swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" }
|
|
|
|
swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" }
|
|
|
|
testing = { version = "0.25.0", path = "../testing" }
|
2022-02-02 17:43:46 +03:00
|
|
|
|
|
|
|
[features]
|
2022-02-02 17:46:36 +03:00
|
|
|
non_critical_lints = []
|