# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "alloy-erc20" version = "0.5.0" authors = ["leruaa"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Interact with ERC-20 contracts using Alloy. """ homepage = "https://github.com/leruaa/alloy-erc20" documentation = "https://docs.rs/alloy-erc20" readme = "README.md" keywords = [ "alloy", "ethereum", "erc20", ] categories = [ "cryptography::cryptocurrencies", "data-structures", ] license = "MIT" repository = "https://github.com/leruaa/alloy-erc20" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "alloy_erc20" path = "src/lib.rs" [[example]] name = "basic_store" path = "examples/basic_store.rs" doc-scrape-examples = true [[example]] name = "lazy" path = "examples/lazy.rs" doc-scrape-examples = true [[example]] name = "provider_ext" path = "examples/provider_ext.rs" doc-scrape-examples = true [[test]] name = "lazy_token" path = "tests/lazy_token.rs" [[test]] name = "token" path = "tests/token.rs" [dependencies.alloy] version = "0.5" features = [ "network", "providers", "transports", "transport-http", "rpc", "rpc-types", "rpc-client", "contract", "sol-types", ] [dependencies.async-once-cell] version = "0.5" [dependencies.async-trait] version = "0.1" [dependencies.bigdecimal] version = "0.4" [dependencies.futures] version = "0.3" [dependencies.lru] version = "0.12" optional = true [dependencies.once_cell] version = "1.18" [dependencies.parking_lot] version = "0.12" features = ["arc_lock"] optional = true [dependencies.thiserror] version = "1.0" [dev-dependencies.dotenv] version = "0.15" [dev-dependencies.reqwest] version = "0.12" [dev-dependencies.tokio] version = "1" features = [ "rt", "macros", ] [features] default = [] known-tokens = [] lru-store = [ "dep:lru", "dep:parking_lot", ]