forked from leruaa/alloy-mev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (47 loc) · 1.2 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
[package]
name = "alloy-mev"
version = "0.2.2"
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.3.0", features = [
"rpc",
"rpc-client",
"rpc-types-mev",
"json-rpc",
"network",
"providers",
"transports",
"transport-http",
"signers",
] }
hyper = { version = "1.1", features = ["client"], optional = true }
tower = { version = "0.4", optional = true }
futures = "0.3"
pin-project = "1.1.5"
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.3.0", features = [
"rpc-client",
"consensus",
"signer-local",
] }
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]