-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (49 loc) · 1.63 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
[workspace]
members = [
"bin",
"crates/block-fetcher",
"crates/block-syncer",
"crates/client-ext",
"crates/downloader",
]
resolver = "2"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "unwind"
[workspace.package]
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/network-watchtower"
version = "0.0.1"
[workspace.dependencies]
fuel-core = { version = "0.41.4" }
fuel-core-bin = { version = "0.41.4", default-features = false, features = ["rocksdb-production", "relayer"] }
fuel-core-compression = { version = "0.41.4" }
fuel-core-client = { version = "0.41.4" }
fuel-core-relayer = { version = "0.41.4" }
fuel-core-poa = { version = "0.41.4" }
fuel-core-services = { version = "0.41.4" }
fuel-core-storage = { version = "0.41.4" }
fuel-core-types = { version = "0.41.4", features = ["da-compression"] }
fuel-block-syncer = { path = "crates/block-syncer" }
fuel-block-fetcher = { path = "crates/block-fetcher" }
fuel-core-client-ext = { path = "crates/client-ext" }
fuel-network-watchtower-downloader = { path = "crates/downloader" }
async-trait = "0.1"
anyhow = "1.0"
clap = { version = "4.4", features = ["derive", "env"] }
hex = { version = "0.4", features = ["serde"] }
futures = "0.3"
futures-util = "0.3"
tracing = "0.1"
tracing-attributes = "0.1"
tokio = { version = "1.40", default-features = false }
tikv-jemallocator = "0.5"
itertools = "0.13"
postcard = "1"
url = { version = "2.2" }