swc/crates/swc_ecma_lints/Cargo.toml

43 lines
1.4 KiB
TOML
Raw Normal View History

[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
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-06-22 10:43:38 +03:00
version = "0.84.11"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false
[dependencies]
2023-06-22 10:40:41 +03:00
ahash = "0.8"
auto_impl = "1.1.0"
dashmap = "5.1.0"
2023-06-22 10:40:41 +03:00
parking_lot = "0.12.1"
rayon = "1.7.0"
regex = "1"
serde = { version = "1.0.133", features = ["derive"] }
2023-05-16 08:18:57 +03:00
swc_atoms = { version = "0.5.6", path = "../swc_atoms" }
2023-06-22 10:43:38 +03:00
swc_common = { version = "0.31.14", path = "../swc_common", features = [
"concurrent",
2022-04-09 11:16:20 +03:00
] }
2023-06-21 18:44:11 +03:00
swc_config = { version = "0.1.6", path = "../swc_config" }
2023-06-22 10:43:38 +03:00
swc_ecma_ast = { version = "0.106.4", path = "../swc_ecma_ast", features = [
"serde",
] }
2023-06-22 10:43:38 +03:00
swc_ecma_utils = { version = "0.119.7", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.92.3", path = "../swc_ecma_visit" }
[dev-dependencies]
2023-06-22 10:43:38 +03:00
swc_ecma_codegen = { version = "0.141.8", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.136.5", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.129.11", path = "../swc_ecma_transforms_base" }
testing = { version = "0.33.17", path = "../testing" }
[features]
2022-02-02 17:46:36 +03:00
non_critical_lints = []