-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
63 lines (55 loc) · 1.32 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "alloy-erc20"
version = "0.5.0"
edition = "2021"
authors = ["leruaa"]
keywords = ["alloy", "ethereum", "erc20"]
categories = ["cryptography::cryptocurrencies", "data-structures"]
license = "MIT"
readme = "./README.md"
documentation = "https://docs.rs/alloy-erc20"
repository = "https://github.com/leruaa/alloy-erc20"
homepage = "https://github.com/leruaa/alloy-erc20"
description = """
Interact with ERC-20 contracts using Alloy.
"""
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
known-tokens = []
lru-store = ["dep:lru", "dep:parking_lot"]
[dependencies]
alloy = { version = "0.5", features = [
"network",
"providers",
"transports",
"transport-http",
"rpc",
"rpc-types",
"rpc-client",
"contract",
"sol-types",
] }
futures = "0.3"
bigdecimal = "0.4"
thiserror = "1.0"
once_cell = "1.18"
async-once-cell = "0.5"
async-trait = "0.1"
lru = { version = "0.12", optional = true }
parking_lot = { version = "0.12", optional = true, features = ["arc_lock"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros"] }
reqwest = "0.12"
dotenv = "0.15"
[[example]]
name = "provider_ext"
doc-scrape-examples = true
[[example]]
name = "basic_store"
doc-scrape-examples = true
[[example]]
name = "lazy"
doc-scrape-examples = true