-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
80 lines (74 loc) · 2.2 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
[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.12"
[workspace.dependencies]
actix-cors = "0.7"
actix-server = "2.5"
actix-web = "4.9"
anyhow = "1.0"
async-nats = "0.37"
async-trait = "0.1"
bytes = "1.8"
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", features = ["p2p", "relayer", "rocksdb"] }
fuel-core = { version = "0.40", features = ["p2p", "relayer", "rocksdb"] }
fuel-core-client = { version = "0.40" }
fuel-core-importer = { version = "0.40" }
fuel-core-storage = { version = "0.40" }
fuel-core-types = { version = "0.40", features = ["test-helpers", "serde"] }
fuel-core-services = "0.40"
futures-util = "0.3"
hex = "0.4"
pretty_assertions = "1.4"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
strum = "0.26"
strum_macros = "0.26"
tokio = { version = "1.41", features = ["full"] }
tracing = "0.1"
tracing-actix-web = "0.7"
thiserror = "1.0"
fuel-streams = { path = "crates/fuel-streams" }
fuel-data-parser = { version = "0.0.12", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.12", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.12", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.12", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.12", path = "crates/fuel-streams-macros/subject-derive" }
# 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