-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
31 lines (26 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
members = [ "eipw-preamble", "eipw-lint", "eipw-lint-js", "eipw-snippets" ]
[package]
name = "eipw"
description = "Ethereum Improvement Proposal linter that's one more than eipv"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eipw-snippets = { path = "eipw-snippets", version = "0.2.0-dev" }
tokio = { version = "1.40.0", features = [ "macros" ] }
clap = { version = "4.5.18", features = [ "derive", "cargo" ] }
eipw-lint = { version = "0.10.0-dev", path = "eipw-lint", features = [ "tokio" ] }
serde_json = "1.0.99"
thiserror = "1.0.64"
toml = "0.8.19"
serde = { version = "1.0.164", features = [ "derive" ] }
sysexits = "0.8.2"
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.40.0", features = [ "macros", "rt" ] }
getrandom = { version = "0.2.15", features = [ "js" ] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.40.0", features = [ "fs", "macros", "rt-multi-thread" ] }