-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 1.16 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
40
[package]
name = "alloy-ethers-typecast"
version = "0.2.0"
edition = "2021"
description = "Crate for safe typecasting between ethers and alloy types"
license = "CAL-1.0"
homepage = "https://github.com/rainlanguage/rain.interpreter"
# 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 = { version = "0.1.4", features = ["rand", "sol-types"] }
once_cell = "1.17.1"
reqwest = { version = "0.11.17", features = ["json"] }
tracing = "0.1.37"
serde_json = { version = "1.0.111", features = ["raw_value"] }
derive_builder = "0.12.0"
async-trait = "0.1.77"
thiserror = "1.0.56"
tracing-subscriber = "0.3.18"
serde = "1.0.195"
rain-error-decoding = { git = "https://github.com/rainlanguage/rain.error", rev = "8953b723c55920da87ae4eb754aa0f0e92d731fa" }
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.2.11", features = ["js", "js-sys"] }
[dev-dependencies]
tokio = { version = "1.28.0", features = ["full"] }
anyhow = "1.0.70"
httpmock = "0.7.0"
[lints.clippy]
all = "warn"
[package.metadata.docs.rs]
all-features = true