sal-modular/evm_client/Cargo.toml

28 lines
679 B
TOML

[package]
name = "evm_client"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[dependencies]
vault = { path = "../vault" }
async-trait = "0.1"
thiserror = "1"
alloy-rlp = { version = "0.3.11", features = ["derive"] }
alloy-primitives = "1.1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4"
hex = "0.4"
reqwest = { version = "0.11", features = ["json"] }
k256 = { version = "0.13", features = ["ecdsa"] }
gloo-net = { version = "0.5", features = ["http"] }
[dev-dependencies]
wasm-bindgen-test = "0.3"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }