-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
62 lines (55 loc) · 1.39 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
[package]
name = "alloy-mev"
version = "0.5.0"
authors = ["leruaa"]
license = "MIT"
edition = "2021"
readme = "./README.md"
documentation = "https://docs.rs/alloy-mev"
repository = "https://github.com/leruaa/alloy-mev"
homepage = "https://github.com/leruaa/alloy-mev"
description = """
Easily send transaction bundles using Alloy.
"""
[features]
default = ["reqwest"]
reqwest = ["dep:reqwest", "dep:serde_json", "dep:tower"]
[dependencies]
alloy = { version = "0.5", features = [
"rpc",
"rpc-client",
"rpc-types-mev",
"json-rpc",
"network",
"providers",
"transports",
"transport-http",
"signers",
] }
hyper = { version = "1.4", features = ["client"], optional = true }
tower = { version = "0.5", optional = true }
futures = "0.3"
pin-project = "1.1"
reqwest = { version = "0.12", optional = true }
url = "2.5"
serde_json = { version = "1.0", optional = true }
async-trait = "0.1"
[dev-dependencies]
dotenv = "0.15"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
anyhow = "1.0"
alloy = { version = "0.5", features = [
"rpc-client",
"consensus",
"signer-local",
] }
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[[example]]
name = "mev_share"
doc-scrape-examples = true
required-features = ["reqwest"]
[[example]]
name = "send_to_builders"
doc-scrape-examples = true
required-features = ["reqwest"]