-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (50 loc) · 2.14 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
[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 <[email protected]>"]
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 = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-bin = { git = "https://github.com/fuellabs/fuel-core", branch = "master", default-features = false, features = ["rocksdb-production", "relayer"] }
fuel-core-compression = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-compression-service = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-client = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-relayer = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-poa = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-services = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-storage = { git = "https://github.com/fuellabs/fuel-core", branch = "master" }
fuel-core-types = { git = "https://github.com/fuellabs/fuel-core", branch = "master", 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.14"
postcard = "1"
url = { version = "2.2" }