[dependencies.alloy]
default-features = false
features = ["std", "reqwest-rustls-tls", "provider-anvil-node", "sol-types", "json", "signers", "contract", "signer-local", "network"]
version = "0.4.2"
[dependencies.dirs-next]
version = "~2.0.0"
[dependencies.rand]
version = "0.8.5"
[dependencies.serde]
version = "=1.0.210"
[dependencies.serde_with]
features = ["macros"]
version = "3.11.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.38.0"
[dependencies.tracing]
version = "~0.1.26"
[features]
local = []
wasm-bindgen = ["alloy/wasm-bindgen"]
[lib]
name = "evmlib"
path = "src/lib.rs"
[lints.clippy]
clone_on_ref_ptr = "warn"
unicode_not_nfc = "warn"
uninlined_format_args = "warn"
unused_async = "warn"
unwrap_used = "warn"
[lints.rust]
arithmetic_overflow = "forbid"
mutable_transmutes = "forbid"
no_mangle_const_items = "forbid"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unknown_crate_types = "forbid"
unsafe_code = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
[package]
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Safe Network EVM"
edition = "2021"
homepage = "https://maidsafe.net"
license = "GPL-3.0"
name = "evmlib"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.1.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["js"]
version = "0.2.12"
[[test]]
name = "data_payments"
path = "tests/data_payments.rs"
[[test]]
name = "network_token"
path = "tests/network_token.rs"
[[test]]
name = "wallet"
path = "tests/wallet.rs"