-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
99 lines (93 loc) · 2.81 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
[workspace]
default-members = ["crates/fuel-streams"]
resolver = "2"
members = [
"benches/*",
"crates/*",
"crates/fuel-streams-macros/subject-derive",
"examples",
"tests",
]
[workspace.package]
authors = ["Fuel Labs <[email protected]>"]
keywords = ["data-stream", "blockchain", "cryptocurrencies"]
edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
rust-version = "1.81.0"
version = "0.0.13"
[workspace.dependencies]
actix-cors = "0.7"
actix-server = "2.5"
actix-web = "4.9"
anyhow = "1.0"
async-nats = "0.38"
async-trait = "0.1"
assert_matches = "1.5.0"
bytes = "1.9"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
dotenvy = "0.15"
displaydoc = "0.2"
futures = "0.3"
fuel-core-bin = { version = "0.40.2", default-features = false, features = [
"p2p",
"relayer",
"rocksdb",
] }
fuel-core = { version = "0.40.2", default-features = false, features = [
"p2p",
"relayer",
"rocksdb",
] }
fuel-core-client = { version = "0.40.2", default-features = false, features = ["std"] }
fuel-core-importer = { version = "0.40.2" }
fuel-core-storage = { version = "0.40.2" }
fuel-core-types = { version = "0.40.2", default-features = false, features = ["std", "serde"] }
fuel-core-services = { version = "0.40.2", default-features = false, features = ["test-helpers"] }
futures-util = "0.3"
itertools = "0.13"
mockall = "0.13"
mockall_double = "0.3.1"
hex = "0.4"
pretty_assertions = "1.4"
num_cpus = "1.16"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
rayon = "1.10.0"
serde_json = "1.0"
sha2 = "0.10"
strum = "0.26"
strum_macros = "0.26"
tokio = { version = "1.41", features = ["full"] }
tokio-stream = "0.1.16"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-actix-web = "0.7"
thiserror = "2.0"
fuel-streams = { path = "crates/fuel-streams" }
fuel-data-parser = { version = "0.0.13", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.13", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.13", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.13", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.13", path = "crates/fuel-streams-macros/subject-derive" }
fuel-streams-executors = { version = "0.0.13", path = "crates/fuel-streams-executors" }
sv-emitter = { version = "0.0.13", path = "crates/sv-emitter" }
sv-consumer = { version = "0.0.13", path = "crates/sv-consumer" }
# Workspace projects
[workspace.metadata.cargo-machete]
ignored = ["fuel-core", "tokio"]
[profile.release]
opt-level = 3
lto = "thin"
strip = true
debug = 0
panic = 'abort'
codegen-units = 1
incremental = false
[profile.dev]
split-debuginfo = "unpacked"
lto = false
incremental = true
opt-level = 0