Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
153 changes: 130 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion chain/arweave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ graph-runtime-wasm = { path = "../../runtime/wasm" }
graph-runtime-derive = { path = "../../runtime/derive" }

[dev-dependencies]
diesel = { version = "1.4.7", features = ["postgres", "serde_json", "numeric", "r2d2"] }
diesel = { version = "2.3.2", features = ["postgres", "serde_json", "numeric", "r2d2"] }
2 changes: 1 addition & 1 deletion chain/near/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ graph-runtime-wasm = { path = "../../runtime/wasm" }
graph-runtime-derive = { path = "../../runtime/derive" }

[dev-dependencies]
diesel = { version = "1.4.7", features = ["postgres", "serde_json", "numeric", "r2d2"] }
diesel = { version = "2.3.2", features = ["postgres", "serde_json", "numeric", "r2d2"] }
trigger-filters.path = "../../substreams/trigger-filters"
2 changes: 1 addition & 1 deletion graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bigdecimal = { version = "0.1.0", features = ["serde"] }
bytes = "1.0.1"
cid = "0.11.0"
defer = "0.1"
diesel = { version = "1.4.8", features = ["postgres", "serde_json", "numeric", "r2d2", "chrono"] }
diesel = { version = "2.3.2", features = ["postgres", "serde_json", "numeric", "r2d2", "chrono"] }
diesel_derives = "1.4"
chrono = "0.4.31"
envconfig = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ graph-store-postgres = { path = "../store/postgres" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
shellexpand = "3.1.0"
termcolor = "1.4.0"
diesel = "1.4.8"
diesel = "2.3.2"
http = "0.2.5" # must be compatible with the version rust-web3 uses
prometheus = { version = "0.13.3", features = ["push"] }
json-structural-diff = { version = "0.1", features = ["colorize"] }
2 changes: 1 addition & 1 deletion store/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition.workspace = true
async-trait = "0.1.50"
blake3 = "1.5"
derive_more = { version = "0.99.17" }
diesel = { version = "1.4.8", features = [
diesel = { version = "2.3.2", features = [
"postgres",
"serde_json",
"numeric",
Expand Down
2 changes: 1 addition & 1 deletion store/test-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ graph-store-postgres = { path = "../postgres" }
graph-chain-ethereum = { path = "../../chain/ethereum" }
lazy_static = "1.1"
hex-literal = "0.4"
diesel = { version = "1.4.8", features = ["postgres", "serde_json", "numeric", "r2d2"] }
diesel = { version = "2.3.2", features = ["postgres", "serde_json", "numeric", "r2d2"] }
serde = "1.0"
prost-types = { workspace = true }

Expand Down
Loading