forked from onbjerg/ethers-flashbots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.02 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
[package]
name = "ethers-flashbots"
version = "0.8.2"
authors = ["Oliver Nordbjerg <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "./README.md"
documentation = "https://docs.rs/ethers-flashbots"
repository = "https://github.com/onbjerg/ethers-flashbots"
homepage = "https://github.com/onbjerg/ethers-flashbots"
description = """
Flashbots middleware for ethers-rs
"""
[dependencies]
# Error handling
thiserror = { version = "1.0.26", default-features = false }
# Serialization/deserialization
serde = "1"
serde_json = "1"
chrono = { version = "0.4.19", features = ["default", "serde"] }
# HTTP
url = { version = "2.2.2", default-features = false }
reqwest = "0.11"
# Async
async-trait = { version = "0.1.50", default-features = false }
futures-util = "0.3"
futures-core = "0.3"
pin-project = "1"
# Ethers
ethers = { git = "https://github.com/gakonst/ethers-rs" }
[dev-dependencies]
tokio = { version = "1.7.1", features = ["macros", "rt-multi-thread"] }
ethers = { git = "https://github.com/gakonst/ethers-rs" }
anyhow = "1.0"