diff --git a/Cargo.lock b/Cargo.lock index 0188bf0909c..7f657930078 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2204,7 +2204,6 @@ dependencies = [ "graph", "graph-runtime-wasm", "hex", - "lazy_static", "prost", "prost-types", "semver", @@ -2220,9 +2219,7 @@ version = "0.36.0" dependencies = [ "anyhow", "async-trait", - "atomic_refcell", "bytes", - "cid", "graph", "graph-chain-ethereum", "graph-chain-near", @@ -2263,7 +2260,6 @@ dependencies = [ "diesel-async", "env_logger", "git-testament", - "globset", "graph", "graph-chain-ethereum", "graph-chain-near", @@ -2280,7 +2276,6 @@ dependencies = [ "itertools", "json-structural-diff", "lazy_static", - "notify", "prometheus", "serde", "shellexpand", @@ -2293,8 +2288,6 @@ dependencies = [ name = "graph-runtime-derive" version = "0.36.0" dependencies = [ - "heck 0.5.0", - "proc-macro2", "quote", "syn 2.0.106", ] @@ -2306,7 +2299,6 @@ dependencies = [ "async-trait", "graph", "graph-chain-ethereum", - "graph-runtime-derive", "graph-runtime-wasm", "rand 0.9.2", "semver", @@ -2401,7 +2393,6 @@ dependencies = [ "itertools", "lazy_static", "lru_time_cache", - "maybe-owned", "openssl", "postgres", "postgres-openssl", @@ -2445,7 +2436,6 @@ dependencies = [ name = "graph_derive" version = "0.36.0" dependencies = [ - "heck 0.5.0", "proc-macro-utils", "proc-macro2", "quote", @@ -3527,12 +3517,6 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" -[[package]] -name = "maybe-owned" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" - [[package]] name = "md-5" version = "0.10.6" @@ -4132,9 +4116,9 @@ dependencies = [ [[package]] name = "postgres" -version = "0.19.7" +version = "0.19.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7915b33ed60abc46040cbcaa25ffa1c7ec240668e0477c4f3070786f5916d451" +checksum = "e7c48ece1c6cda0db61b058c1721378da76855140e9214339fa1317decacb176" dependencies = [ "bytes", "fallible-iterator 0.2.0", @@ -4199,9 +4183,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "pq-src" -version = "0.3.9+libpq-17.5" +version = "0.3.10+libpq-18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24ee82a51d19317d15e43b82e496db215ad5bf09a245786e7ac75cb859e5ba46" +checksum = "56ef39ce621f4993d6084fdcd4cbf1e01c84bdba53109cfad095d2cf441b85b9" dependencies = [ "cc", "openssl-sys", diff --git a/chain/substreams/Cargo.toml b/chain/substreams/Cargo.toml index 12cdca8840a..57a5706aca1 100644 --- a/chain/substreams/Cargo.toml +++ b/chain/substreams/Cargo.toml @@ -10,7 +10,6 @@ tonic-build = { workspace = true } async-trait = { workspace = true } graph = { path = "../../graph" } graph-runtime-wasm = { path = "../../runtime/wasm" } -lazy_static = "1.5.0" serde = { workspace = true } prost = { workspace = true } prost-types = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index c914d0de935..a0ce74ef256 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -5,7 +5,6 @@ edition.workspace = true [dependencies] async-trait = { workspace = true} -atomic_refcell = "0.1.13" bytes = "1.0" graph = { path = "../graph" } graph-chain-ethereum = { path = "../chain/ethereum" } @@ -18,7 +17,6 @@ tokio-retry = { workspace = true } # Switch to crates.io once tower 0.5 is released tower = { git = "https://github.com/tower-rs/tower.git", features = ["full"] } thiserror = { workspace = true } -cid = "0.11.1" anyhow = "1.0" [dev-dependencies] diff --git a/graph/derive/Cargo.toml b/graph/derive/Cargo.toml index bfcfa0487fb..cfa5296efe9 100644 --- a/graph/derive/Cargo.toml +++ b/graph/derive/Cargo.toml @@ -15,7 +15,6 @@ proc-macro = true syn = { workspace = true } quote = "1.0" proc-macro2 = "1.0.105" -heck = "0.5" [dev-dependencies] proc-macro-utils = "0.10.0" diff --git a/node/Cargo.toml b/node/Cargo.toml index 951b61b4785..26b638d1c97 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -41,5 +41,3 @@ diesel = { workspace = true } diesel-async = { workspace = true } prometheus = { version = "0.14.0", features = ["push"] } json-structural-diff = { version = "0.2", features = ["colorize"] } -globset = "0.4.18" -notify = "8.2.0" diff --git a/runtime/derive/Cargo.toml b/runtime/derive/Cargo.toml index 1118c246327..82f46d5e560 100644 --- a/runtime/derive/Cargo.toml +++ b/runtime/derive/Cargo.toml @@ -9,5 +9,3 @@ proc-macro = true [dependencies] syn = { workspace = true } quote = "1.0" -proc-macro2 = "1.0.105" -heck = "0.5" diff --git a/runtime/test/Cargo.toml b/runtime/test/Cargo.toml index 60311f1d8c4..d0cce213fc9 100644 --- a/runtime/test/Cargo.toml +++ b/runtime/test/Cargo.toml @@ -9,7 +9,6 @@ semver = "1.0" wasmtime.workspace = true graph = { path = "../../graph" } graph-chain-ethereum = { path = "../../chain/ethereum" } -graph-runtime-derive = { path = "../derive" } graph-runtime-wasm = { path = "../wasm" } rand.workspace = true diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index b3bfabf03c8..a9f738d1d4a 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -21,7 +21,6 @@ graphman-store = { workspace = true } Inflector = "0.11.3" lazy_static = "1.5" lru_time_cache = "0.11" -maybe-owned = "0.3.4" postgres = "0.19.1" openssl = { version = "0.10.73", features = ["vendored"] } postgres-openssl = "0.5.2"