-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
134 lines (126 loc) · 3.56 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[workspace]
default-members = ["crates/fuel-streams"]
members = [
"benches/*",
"crates/*",
"crates/subject/subject-derive",
"examples",
"scripts/generate-api-keys",
"scripts/subjects-schema",
"services/*",
"tests",
]
resolver = "2"
[workspace.package]
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "data-stream"]
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
rust-version = "1.84.0"
version = "0.0.25"
[workspace.dependencies]
actix-cors = "0.7"
actix-server = "2.5"
actix-web = "4.9"
anyhow = "1.0"
async-nats = "0.38"
async-stream = "0.3"
async-trait = "0.1"
bincode = "1.3"
bytes = "1.9"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
displaydoc = "0.2"
dotenvy = "0.15"
futures = "0.3"
futures-util = "0.3"
hex = "0.4"
indexmap = { version = "2.7.1", features = ["serde"] }
moka = { version = "0.12.9", features = ["sync"] }
num_cpus = "1.16"
pretty_assertions = "1.4"
rand = "0.8"
rayon = "1.10.0"
regex = "1.10.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
sqlx = { version = "0.8.3", default-features = false, features = [
"chrono",
"macros",
"postgres",
"runtime-tokio",
"tls-native-tls",
] }
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
test-case = "3.3"
thiserror = "2.0"
tokio = { version = "1.41", features = [
"io-util",
"macros",
"rt-multi-thread",
"test-util",
] }
tokio-stream = "0.1"
tracing = "0.1"
tracing-actix-web = "0.7"
tracing-subscriber = { version = "0.3", features = [
"local-time",
"env-filter",
] }
# Fuel Core dependencies
fuel-core = { version = "=0.40.4", default-features = false, features = [
"p2p",
"relayer",
"rocksdb",
] }
fuel-core-bin = { version = "=0.40.4", default-features = false, features = [
"p2p",
"relayer",
"rocksdb",
] }
fuel-core-client = { version = "=0.40.4", default-features = false, features = [
"std",
] }
fuel-core-importer = { version = "=0.40.4" }
fuel-core-poa = { version = "=0.40.4", default-features = false }
fuel-core-services = { version = "=0.40.4", default-features = false }
fuel-core-storage = { version = "=0.40.4" }
fuel-core-txpool = { version = "=0.40.4" }
fuel-core-types = { version = "=0.40.4", default-features = false, features = [
"serde",
"std",
] }
fuel-tx = { version = "0.58.2" }
fuel-vm = { version = "0.58.2" }
# Internal dependencies
fuel-data-parser = { version = "0.0.25", path = "crates/data-parser" }
fuel-message-broker = { version = "0.0.25", path = "crates/message-broker" }
fuel-streams = { version = "0.0.25", path = "crates/fuel-streams" }
fuel-streams-core = { version = "0.0.25", path = "crates/core" }
fuel-streams-domains = { version = "0.0.25", path = "crates/domains" }
fuel-streams-store = { version = "0.0.25", path = "crates/store" }
fuel-streams-subject = { version = "0.0.25", path = "crates/subject" }
fuel-streams-test = { version = "0.0.22", path = "crates/test" }
fuel-streams-types = { version = "0.0.25", path = "crates/types" }
fuel-web-utils = { version = "0.0.25", path = "crates/web-utils" }
subject-derive = { version = "0.0.25", path = "crates/subject/subject-derive" }
# Workspace projects
[workspace.metadata.cargo-machete]
ignored = ["anyhow", "fuel-core", "fuel-tx", "fuel-vm", "tokio"]
[profile.release]
codegen-units = 1
incremental = false
debug = 0
lto = "thin"
opt-level = 3
panic = 'abort'
strip = true
[profile.dev]
incremental = true
lto = false
opt-level = 0
split-debuginfo = "unpacked"