forked from FuelLabs/fuel-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
115 lines (109 loc) · 4.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[workspace]
# Use the new resolver to prevent dev-deps and build-deps from enabling debugging or test features in production.
members = [
"benches",
"bin/e2e-test-client",
"bin/fuel-core",
"bin/fuel-core-client",
"bin/keygen",
"crates/chain-config",
"crates/client",
"crates/database",
"crates/fuel-core",
"crates/metrics",
"crates/services",
"crates/services/consensus_module",
"crates/services/consensus_module/bft",
"crates/services/consensus_module/poa",
"crates/services/executor",
"crates/services/importer",
"crates/services/p2p",
"crates/services/producer",
"crates/services/relayer",
"crates/services/sync",
"crates/services/txpool",
"crates/storage",
"crates/trace",
"crates/types",
"tests",
"xtask",
]
resolver = "2"
exclude = ["version-compatibility"]
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
[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/fuel-core"
version = "0.20.4"
[workspace.dependencies]
# Workspace members
fuel-core = { version = "0.20.4", path = "./crates/fuel-core", default-features = false }
fuel-core-client-bin = { version = "0.20.4", path = "./bin/client" }
fuel-core-bin = { version = "0.20.4", path = "./bin/fuel-core" }
fuel-core-keygen = { version = "0.20.4", path = "./bin/keygen" }
fuel-core-chain-config = { version = "0.20.4", path = "./crates/chain-config" }
fuel-core-client = { version = "0.20.4", path = "./crates/client" }
fuel-core-database = { version = "0.20.4", path = "./crates/database" }
fuel-core-metrics = { version = "0.20.4", path = "./crates/metrics" }
fuel-core-services = { version = "0.20.4", path = "./crates/services" }
fuel-core-consensus-module = { version = "0.20.4", path = "./crates/services/consensus_module" }
fuel-core-bft = { version = "0.20.4", path = "./crates/services/consensus_module/bft" }
fuel-core-poa = { version = "0.20.4", path = "./crates/services/consensus_module/poa" }
fuel-core-executor = { version = "0.20.4", path = "./crates/services/executor" }
fuel-core-importer = { version = "0.20.4", path = "./crates/services/importer" }
fuel-core-p2p = { version = "0.20.4", path = "./crates/services/p2p" }
fuel-core-producer = { version = "0.20.4", path = "./crates/services/producer" }
fuel-core-relayer = { version = "0.20.4", path = "./crates/services/relayer" }
fuel-core-sync = { version = "0.20.4", path = "./crates/services/sync" }
fuel-core-txpool = { version = "0.20.4", path = "./crates/services/txpool" }
fuel-core-storage = { version = "0.20.4", path = "./crates/storage" }
fuel-core-trace = { version = "0.20.4", path = "./crates/trace" }
fuel-core-types = { version = "0.20.4", path = "./crates/types", default-features = false }
fuel-core-tests = { version = "0.0.0", path = "./tests" }
fuel-core-xtask = { version = "0.0.0", path = "./xtask" }
# Fuel dependencies
fuel-vm-private = { version = "0.38.0", package = "fuel-vm" }
# Common dependencies
anyhow = "1.0"
async-trait = "0.1"
cynic = { version = "2.2.1", features = ["http-reqwest"] }
clap = "4.1"
derive_more = { version = "0.99" }
hyper = { version = "0.14.26" }
rand = "0.8"
parking_lot = "0.12"
tokio = { version = "1.27", default-features = false }
tokio-rayon = "2.1.0"
tokio-stream = "0.1"
tracing = "0.1"
thiserror = "1.0"
futures = "0.3"
postcard = "1.0"
tracing-attributes = "0.1"
tracing-subscriber = "0.3"
serde = "1.0"
serde_json = "1.0"
# enable cookie store to support L7 sticky sessions
reqwest = { version = "0.11.16", default-features = false, features = ["rustls-tls", "cookies"] }
mockall = "0.11"
test-case = "2.2"
test-strategy = "0.3"
proptest = "1.1"
pin-project-lite = "0.2"
axum = "0.5"
lazy_static = "1.4"
libp2p-prom-client = { package = "prometheus-client", version = "0.18" }
once_cell = "1.16"
prometheus-client = "0.20"
itertools = "0.10"
insta = "1.8"
tempfile = "3.4"
tikv-jemallocator = "0.5"