-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
79 lines (75 loc) · 2.4 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
[package]
name = "indexer-service-rs"
version = "1.4.2"
edition = "2021"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
indexer-monitor = { path = "../monitor" }
indexer-attestation = { path = "../attestation" }
indexer-allocation = { path = "../allocation" }
indexer-config = { path = "../config" }
indexer-dips = { path = "../dips" }
indexer-query = { path = "../query" }
indexer-receipt = { path = "../indexer-receipt" }
anyhow = { workspace = true }
prometheus = { workspace = true }
reqwest = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
tracing.workspace = true
thiserror.workspace = true
serde = { workspace = true }
serde_json.workspace = true
axum.workspace = true
bigdecimal.workspace = true
sqlx.workspace = true
thegraph-core.workspace = true
thegraph-graphql-http.workspace = true
graphql_client.workspace = true
tracing-subscriber = { workspace = true, features = ["fmt"] }
clap = { workspace = true, features = ["derive"] }
build-info.workspace = true
lazy_static.workspace = true
prost.workspace = true
async-trait.workspace = true
async-graphql = { version = "7.0.11", default-features = false }
async-graphql-axum = "7.0.11"
base64.workspace = true
graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.3.0" }
tap_core.workspace = true
tap_graph.workspace = true
tap_aggregator.workspace = true
uuid.workspace = true
bon.workspace = true
tower_governor = { version = "0.5.0", features = ["axum"] }
governor = "0.8.0"
tower-http = { version = "0.6.2", features = [
"auth",
"cors",
"normalize-path",
"trace",
] }
autometrics = { version = "1.0.1", features = ["prometheus-exporter"] }
axum-extra = { version = "0.10.0", features = [
"typed-header",
], default-features = false }
tokio-util = "0.7.10"
cost-model = { git = "https://github.com/graphprotocol/agora", rev = "3ed34ca" }
bip39.workspace = true
tower = "0.5.1"
pin-project = "1.1.7"
tonic.workspace = true
itertools = "0.14.0"
[dev-dependencies]
hex-literal = "0.4.1"
test-assets = { path = "../test-assets" }
sqlx = { workspace = true, features = ["migrate"] }
rstest.workspace = true
tower-test = "0.4.0"
tower-service = "0.3.3"
tokio-test = "0.4.4"
wiremock.workspace = true
insta = "1.41.1"
test-log.workspace = true
[build-dependencies]
build-info-build = { version = "0.0.40", default-features = false }