diff --git a/Cargo.lock b/Cargo.lock index 5de2f5f..d386149 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -784,8 +784,8 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "contract-client" -version = "1.0.3" -source = "git+https://github.com/subsquid/subsquid-network.git#36d733688b341b4a3260164fa7572ae54fca3bec" +version = "1.0.4" +source = "git+https://github.com/subsquid/subsquid-network.git#1418b2e8ec889e0e1d56a218aff8ec6d6a3bc211" dependencies = [ "async-trait", "clap", @@ -4020,7 +4020,7 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" [[package]] name = "query-gateway" -version = "1.0.3" +version = "1.0.4" dependencies = [ "anyhow", "axum", @@ -4952,8 +4952,8 @@ dependencies = [ [[package]] name = "subsquid-messages" -version = "1.0.1" -source = "git+https://github.com/subsquid/subsquid-network.git#36d733688b341b4a3260164fa7572ae54fca3bec" +version = "1.0.2" +source = "git+https://github.com/subsquid/subsquid-network.git#1418b2e8ec889e0e1d56a218aff8ec6d6a3bc211" dependencies = [ "anyhow", "hex", @@ -4967,8 +4967,8 @@ dependencies = [ [[package]] name = "subsquid-network-transport" -version = "1.0.5" -source = "git+https://github.com/subsquid/subsquid-network.git#36d733688b341b4a3260164fa7572ae54fca3bec" +version = "1.0.8" +source = "git+https://github.com/subsquid/subsquid-network.git#1418b2e8ec889e0e1d56a218aff8ec6d6a3bc211" dependencies = [ "anyhow", "async-trait", @@ -4986,6 +4986,7 @@ dependencies = [ "libp2p-swarm-derive", "log", "lru", + "parking_lot", "prost", "serde", "subsquid-messages", diff --git a/Cargo.toml b/Cargo.toml index 28a750f..21b9ca0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "query-gateway" -version = "1.0.3" +version = "1.0.4" edition = "2021" [dependencies] @@ -29,9 +29,9 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] } tokio-rusqlite = "0.5" uuid = { version = "1", features = ["v4", "fast-rng"] } -contract-client = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.3" } -subsquid-messages = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.1", features = ["semver"] } -subsquid-network-transport = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.5", features = ["gateway"] } +contract-client = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.4" } +subsquid-messages = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.2", features = ["semver"] } +subsquid-network-transport = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.8", features = ["gateway"] } [target.'cfg(not(target_env = "msvc"))'.dependencies] tikv-jemallocator = "0.6"