[package]
edition = "2024"
name = "evmlib"
version = "0.7.0"
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Network EVM"
homepage = "https://maidsafe.net"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/WithAutonomi/evmlib"
[features]
external-signer = []
[lib]
name = "evmlib"
path = "src/lib.rs"
[[test]]
name = "cryptography"
path = "tests/cryptography.rs"
[[test]]
name = "gas_fee_limit"
path = "tests/gas_fee_limit.rs"
[[test]]
name = "network_token"
path = "tests/network_token.rs"
[[test]]
name = "payment_vault"
path = "tests/payment_vault.rs"
[[test]]
name = "wallet"
path = "tests/wallet.rs"
[dependencies.alloy]
version = "1.0.32"
features = [
"contract",
"json-rpc",
"network",
"node-bindings",
"provider-http",
"reqwest-rustls-tls",
"rpc-client",
"rpc-types",
"signer-local",
"std",
]
default-features = false
[dependencies.ant-merkle]
version = "1.5.1"
[dependencies.exponential-backoff]
version = "2.0.0"
[dependencies.hex]
version = "~0.4.3"
[dependencies.rand]
version = "0.8.5"
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
[dependencies.serde_with]
version = "3.11.0"
features = ["macros"]
[dependencies.thiserror]
version = "1.0"
[dependencies.tiny-keccak]
version = "~2.0.2"
features = ["sha3"]
[dependencies.tokio]
version = "1.43.1"
[dependencies.tracing]
version = "~0.1.26"
[dependencies.xor_name]
version = "5"
[dev-dependencies.dirs-next]
version = "~2.0"
[dev-dependencies.serde_json]
version = "1.0.108"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]