-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
90 lines (86 loc) · 2.63 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
[package]
edition = "2021"
name = "graph-gateway"
version = "24.1.0"
[profile.release]
lto = true
codegen-units = 1
[profile.perf]
inherits = "release"
debug = true
[dependencies]
alloy-primitives = { version = "0.8.11", features = ["serde"] }
alloy-signer-local = "0.5.4"
alloy-sol-types = "0.8.11"
anyhow = "1.0"
axum = { version = "0.7.7", default-features = false, features = [
"json",
"tokio",
"http1",
] }
cost-model = { git = "https://github.com/graphprotocol/agora", rev = "e9530de" }
custom_debug = "0.6.1"
ethers = "2.0.14"
faster-hex = "0.10.0"
futures = "0.3"
graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.3.0", default-features = false }
headers = "0.4.0"
hex = "0.4"
hickory-resolver = "0.24.0"
http = "1.1.0"
indexer-selection = { git = "https://github.com/edgeandnode/candidate-selection", rev = "46f4fec" }
ipnetwork = { version = "0.20.0", default-features = false }
itertools = "0.13.0"
lazy_static = "1.4.0"
ordered-float = "4.2.0"
parking_lot = "0.12.3"
pin-project = "1.1.5"
primitive-types = "0.12.2"
prometheus = { version = "0.13", default-features = false }
prost = "0.13.1"
rand = { version = "0.8", features = ["small_rng"] }
rdkafka = { version = "0.36.2", features = ["gssapi", "tracing"] }
receipts = { git = "https://github.com/edgeandnode/receipts", rev = "e94e0f1" }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"default-tls",
"gzip",
] }
secp256k1 = { version = "0.29", default-features = false }
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.116", features = ["raw_value"] }
serde_with = "3.8.1"
simple-rate-limiter = "1.0"
snmalloc-rs = "0.3"
tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "61b47b3" }
thegraph-core = { version = "0.7.0", features = ["serde"] }
thegraph-graphql-http = { version = "0.2.1", features = [
"http-client-reqwest",
] }
thiserror = "1.0.59"
tokio = { version = "1.38.0", features = [
"macros",
"parking_lot",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
toolshed = { git = "https://github.com/edgeandnode/toolshed", tag = "toolshed-v0.6.0" }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["cors"] }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"parking_lot",
"json",
] }
url = "2.5.0"
[dev-dependencies]
assert_matches = "1.5.0"
http-body-util = "0.1.1"
hyper = "1.3.1"
test-with = { version = "0.14.0", default-features = false }
tokio-test = "0.4.4"
tower-test = "0.4.0"