forked from FuelLabs/fuel-block-committer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 1.05 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
[package]
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuel-block-committer"
rust-version = "1.77.0"
version = "0.1.0"
name = "fuel-block-committer"
[[test]]
harness = true
name = "e2e"
path = "tests/harness.rs"
[dependencies]
actix-web = "4"
async-trait = "0.1.68"
fuel-core-client = "0.24"
prometheus = "0.13.3"
serde = { version = "1.0", features = ["derive"] }
ethers = { version = "2.0", features = ["ws"] }
tokio = { version = "1.28.0", features = ["rt-multi-thread", "rt", "macros"] }
tokio-util = { version = "0.7.8" }
thiserror = "1.0.40"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json"] }
clap = { version = "4.3", features = ["derive", "env"] }
url = "2.3"
serde_json = "1.0.96"
rusqlite = { version = "0.31", features = ["bundled"] }
futures = "0.3.28"
[dev-dependencies]
#TODO: use once a new release supporting core 0.24.1 is made
#fuels-test-helpers = "0.56.0"
rand = "0.8.5"
mockall = "0.12.1"
anyhow = "1.0.71"