-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (32 loc) · 1.09 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
32
33
34
35
36
37
38
39
[package]
name = "rain-error-decoding"
version = "0.1.0"
edition = "2021"
description = "Crate for rain error decoding"
license = "CAL-1.0"
homepage = "https://github.com/rainlanguage/rain.error"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers = { version = "2.0.14", features = [
"legacy",
"ledger",
] }
alloy-primitives = { version = "0.7.7", features = ["rand"] }
alloy-sol-types = { version = "0.7.7" }
alloy-json-abi = "0.7.7"
alloy-dyn-abi = "0.7.7"
once_cell = "1.17.1"
reqwest = { version = "0.11.17", features = ["json"] }
serde_json = "1.0.111"
thiserror = "1.0.56"
serde = "1.0.195"
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.2.11", features = ["js", "js-sys"] }
[target.'cfg(target_family = "wasm")'.dev-dependencies]
tokio = { version = "1.28.0", features = ["sync", "macros", "io-util", "rt", "time"] }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
tokio = { version = "1.28.0", features = ["full"] }
[dev-dependencies]
anyhow = "1.0.70"
[lints.clippy]
all = "warn"