-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
83 lines (80 loc) · 2.18 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
[workspace]
members = [
"tycho-indexer",
"tycho-client",
"tycho-client-py",
"tycho-core",
"tycho-storage",
"tycho-ethereum",
]
resolver = "2"
# profile for building substreams crates
[profile.substreams]
inherits = "release"
lto = true
opt-level = 'z'
strip = "debuginfo"
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[workspace.dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
serde_json = "1.0.105"
serde = { version = "1.0", features = ["rc"] }
strum = "0.25.0"
strum_macros = "0.25.2"
alloy-primitives = { version = "0.6.2", features = ["serde"] }
uuid = { version = "1.4.1", features = [
"serde",
"v4",
"fast-rng",
"macro-diagnostics",
] }
hex = "0.4.3"
tycho-core = { path = "tycho-core" }
tycho-storage = { path = "./tycho-storage" }
tycho-ethereum = { path = "./tycho-ethereum", features = ["onchain_data"]}
tycho-client = { path = "./tycho-client" }
futures03 = { version = "0.3.1", package = "futures", features = ["compat"] }
thiserror = "1"
tracing = "0.1.37"
hyper = "0.14.27"
async-trait = "0.1.73"
tokio = { version = "1.27", features = [
"time",
"sync",
"macros",
"test-util",
"rt-multi-thread",
"parking_lot",
"tracing",
] }
console-subscriber = "0.2.0"
tokio-tungstenite = { version = "0.20.0", features = ["native-tls"] }
utoipa = { version = "4.2.0", features = ["chrono"] }
diesel = { version = "2.1.0", features = ["postgres", "chrono", "serde_json"] }
diesel-async = { version = "0.4.1", features = ["postgres", "deadpool"] }
substreams = "0.5"
substreams-ethereum = "0.9"
regex = "1.6.0"
prost = "0.11"
prost-types = "0.10.1"
hex-literal = "0.4.1"
ethabi = "18.0.0"
bytes = "1.5.0"
anyhow = "1.0.75"
unicode-segmentation = "1.11.0"
clap = "4.4.2"
tracing-appender = "0.2"
reqwest = "0.11"
url = "2"
tracing-opentelemetry = { version = "0.22", default-features = false }
opentelemetry = { version = "0.21" }
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.14", default-features = false, features = [
"trace",
"grpc-tonic",
] }
metrics = "0.24"
metrics-exporter-prometheus = "0.16"