sal-modular/evm_client/Cargo.toml
2025-05-26 13:22:42 +03:00

46 lines
1.2 KiB
TOML

[package]
name = "evm_client"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[dependencies]
instant = { version = "0.1", features = ["wasm-bindgen"] }
# Only universal/core dependencies here
tokio = { version = "1.37", features = ["rt", "macros"] }
rhai = "1.16"
ethers-core = "2.0"
rlp = "0.5"
async-trait = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
log = "0.4"
hex = "0.4"
k256 = { version = "0.13", features = ["ecdsa"] }
[dev-dependencies]
tempfile = "3.10"
wasm-bindgen-test = "0.3"
web-sys = { version = "0.3", features = ["console"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
getrandom_02 = { package = "getrandom", version = "0.2.16", features = ["js"] }
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
js-sys = "0.3"
# console_error_panic_hook = "0.1"
gloo-net = { version = "0.5", features = ["http"] }
console_log = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
log = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11"
reqwest = { version = "0.11", features = ["json"] }