[package] name = "eipw-lint" version = "0.9.0" edition = "2021" license = "MPL-2.0" rust-version = "1.80" repository = "https://github.com/ethereum/eipw" description = "library of lints for eipw, the Ethereum Improvement Proposal validator" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] eipw-preamble = { version = "0.2.0", path = "../eipw-preamble" } comrak = { version = "0.29.0", default-features = false } eipw-snippets = { path = "../eipw-snippets", version = "0.1.0" } snafu = "0.8.5" regex = "1.11.0" serde_json = "1.0.128" serde = { version = "1.0.164", features = [ "derive" ] } url = "2.5.2" chrono = { version = "0.4.38", default-features = false } educe = { version = "0.6.0", default-features = false, features = [ "Debug" ] } tokio = { optional = true, version = "1.40.0", features = [ "macros" ] } scraper = { version = "0.20.0", default-features = false } jsonschema = { version = "0.21.0", default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { version = "1.40.0", features = [ "fs", "macros" ] } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "1.40.0", features = [ "fs", "macros", "rt" ] } [dev-dependencies] assert_matches = "1.5.0" tokio = { version = "1.40.0", features = [ "macros", "rt" ] } toml = "0.8.19"