-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
133 lines (129 loc) · 3.52 KB
/
Cargo.toml
File metadata and controls
133 lines (129 loc) · 3.52 KB
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
[workspace]
members = [
"crates/allocation",
"crates/attestation",
"crates/config",
"crates/dips",
"crates/indexer-receipt",
"crates/monitor",
"crates/profiler",
"crates/query",
"crates/service",
"crates/tap-agent",
"crates/test-assets",
"crates/watcher",
"integration-tests",
]
resolver = "2"
# This is to enable debug symbols
# which are useful during profiling
# with callgrind
# [profile.release]
# debug = true
# force-frame-pointers = true
[profile.dev.package."*"]
opt-level = 3
[workspace.dependencies]
anyhow = { version = "1.0.72" }
async-trait = "0.1.83"
axum = { version = "0.8.6", default-features = false, features = [
"tokio",
"http1",
"http2",
] }
base64 = "0.22.1"
bigdecimal = "0.4.3"
bip39 = "2.0.0"
bon = "3.3"
build-info = "0.0.43"
build-info-build = { version = "0.0.43", default-features = false }
clap = "4.4.3"
educe = "0.6.0"
env_logger = { version = "0.11.0", default-features = false }
futures = "0.3"
futures-util = { version = "0.3.28", default-features = false }
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
graph-networks-registry = "0.6.1"
hex-literal = "0.4.1"
insta = "1.42.2"
itertools = "0.14.0"
jsonrpsee = { version = "0.24.0", features = ["http-client", "tracing"] }
prometheus = "0.13.3"
prost = "0.14.1"
prost-types = "0.14.1"
ractor = { version = "0.15.7", features = [
"async-trait",
"tokio_runtime",
], default-features = false }
rand = "0.9.0"
reqwest = { version = "0.12", features = [
"charset",
"h2",
], default-features = false }
rstest = "0.24.0"
ruint = { version = "1.12.3", features = [
"num-traits",
], default-features = false }
serde = { version = "1.0.206", default-features = false }
serde_json = "1.0.124"
serde_yaml = "0.9.21"
serial_test = "3.2.0"
sha2 = "0.10"
sqlx = { version = "0.8.2", features = [
"bigdecimal",
"chrono",
"json",
"macros",
"migrate",
"postgres",
"runtime-tokio",
"rust_decimal",
"uuid",
], default-features = false }
stdext = "0.3.3"
tap_aggregator = { version = "0.6.3", default-features = false, features = [
"v2",
] }
tap_core = { version = "6.0.2", default-features = false }
tap_graph = { version = "0.3.5", features = ["v2"] }
tempfile = "3.8.0"
test-log = { version = "0.2.12", default-features = false }
testcontainers-modules = { version = "0.12.1", features = ["postgres"] }
test-with = "0.14.6"
thegraph-core = { version = "0.15.2", features = [
"attestation",
"alloy-eip712",
"alloy-sol-types",
"alloy-rlp",
"alloy-signers",
"alloy-signer-local",
"alloy-signer-mnemonic",
"serde",
] }
thegraph-graphql-http = { version = "0.3.2", features = ["reqwest"] }
thiserror = "2.0.12"
tokio = "1.40"
tokio-test = "0.4.4"
tonic = { version = "0.14.1", features = ["tls-native-roots", "gzip"] }
tonic-build = "0.14.1"
tonic-prost = "0.14.1"
tonic-prost-build = "0.14.1"
tower-service = "0.3.3"
tower-test = "0.4.0"
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3", features = [
"json",
"env-filter",
"ansi",
], default-features = false }
uuid = { version = "1.11.0", features = ["v7"] }
wiremock = "0.6.1"
wiremock-grpc = { git = "https://github.com/suchapalaver/wiremock-grpc-rs.git", branch = "main" }
rdkafka = { version = "0.38.0", features = ["gssapi", "tracing"] }
regex = "1"
toml = "0.8"
# Insta benefits from being compiled in release mode, even as dev dependency
# see https://insta.rs/docs/quickstart
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3