-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (103 loc) · 3.29 KB
/
Cargo.toml
File metadata and controls
110 lines (103 loc) · 3.29 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
[package]
name = "graph"
version.workspace = true
edition.workspace = true
[dependencies]
alloy = { workspace = true }
base64 = "=0.21.7"
anyhow = "1.0"
async-trait = { workspace = true }
async-stream = "0.3"
atomic_refcell = "0.1.13"
# We require this precise version of bigdecimal. Updating to later versions
# has caused PoI differences; if you update this version, you will need to
# make sure that it does not cause PoI changes
old_bigdecimal = { version = "=0.1.2", features = [
"serde",
], package = "bigdecimal" }
bytes = "1.0.1"
bs58 = { workspace = true }
cid = "0.11.1"
derive_more = { workspace = true, features = ["debug"] }
graph_derive = { path = "./derive" }
diesel = { workspace = true }
diesel_derives = { workspace = true }
chrono = "0.4.44"
envconfig = { workspace = true }
Inflector = "0.11.3"
reqwest = { version = "0.12.23", features = ["json", "stream", "multipart", "gzip", "brotli", "deflate"] }
hex = "0.4.3"
http0 = { version = "0", package = "http" }
http = "1"
hyper = { version = "1", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
futures01 = { package = "futures", version = "0.1.31" }
lru_time_cache = "0.11"
graphql-tools = { workspace = true }
lazy_static = { workspace = true }
num-bigint = { version = "=0.2.6", features = ["serde"] }
num-integer = { version = "=0.1.46" }
num-traits = "=0.2.19"
rand.workspace = true
redis = { workspace = true }
regex = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
serde_regex = { workspace = true }
serde_yaml = { workspace = true }
sha2 = "0.11.0"
slog = { workspace = true }
sqlparser = { workspace = true }
# TODO: This should be reverted to the latest version once it's published
# stable-hash_legacy = { version = "0.3.3", package = "stable-hash" }
# stable-hash = { version = "0.4.2" }
stable-hash = { git = "https://github.com/graphprotocol/stable-hash", branch = "main" }
stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" }
strum_macros = "0.28.0"
slog-async = "2.5.0"
slog-envlogger = "2.1.0"
slog-term = "2.7.0"
petgraph = "0.8.3"
tiny-keccak = "2.0.2"
tokio = { workspace = true}
tokio-stream = { workspace = true }
tokio-retry = { workspace = true }
toml = "1.1.0"
url = { workspace = true }
prometheus = "0.14.0"
priority-queue = "2.7.0"
tonic = { workspace = true }
tonic-prost = { workspace = true }
prost = { workspace = true }
prost-types = { workspace = true }
futures03 = { version = "0.3.31", package = "futures", features = ["compat"] }
wasmparser = "0.118.1"
thiserror = { workspace = true }
parking_lot = "0.12.5"
portable-atomic = { version = "1.13", features = ["fallback"] }
itertools = "0.14.0"
defer = "0.2"
serde_plain = "1.0.2"
csv = "1.4.0"
object_store = { version = "0.13.2", features = ["gcp"] }
# Dependencies related to Amp subgraphs
ahash.workspace = true
arrow-flight.workspace = true
arrow.workspace = true
half.workspace = true
indoc.workspace = true
lazy-regex.workspace = true
sqlparser-latest.workspace = true
tokio-util.workspace = true
[dev-dependencies]
clap.workspace = true
maplit = "1.0.2"
hex-literal = "1.1"
wiremock = "0.6.5"
[build-dependencies]
tonic-prost-build = { workspace = true }
[lints]
workspace = true