From 21a7cb9ef859389e59cebfb7507425943d7fe294 Mon Sep 17 00:00:00 2001 From: Theo Butler Date: Sun, 14 Apr 2024 22:15:56 -0400 Subject: [PATCH] chore: update candidate-selection --- Cargo.lock | 15 +++++++++++++-- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 430c2e69..5c6ab34f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -646,6 +646,17 @@ dependencies = [ "rand", ] +[[package]] +name = "candidate-selection" +version = "0.1.0" +source = "git+https://github.com/edgeandnode/candidate-selection?rev=b58f057#b58f057f4c85e3f3e4fe79a0609839f0aad813b3" +dependencies = [ + "arrayvec 0.7.4", + "ordered-float", + "permutation", + "proptest", +] + [[package]] name = "cargo-platform" version = "0.1.8" @@ -1835,7 +1846,7 @@ dependencies = [ "anyhow", "assert_matches", "axum", - "candidate-selection", + "candidate-selection 0.1.0 (git+https://github.com/edgeandnode/candidate-selection?rev=b58f057)", "chrono", "cost-model", "ethers", @@ -2475,7 +2486,7 @@ name = "indexer-selection" version = "0.1.0" source = "git+https://github.com/edgeandnode/candidate-selection?rev=4b6ce4a#4b6ce4a9241c451fd3fe158c65692bfdde58405d" dependencies = [ - "candidate-selection", + "candidate-selection 0.1.0 (git+https://github.com/edgeandnode/candidate-selection?rev=4b6ce4a)", "custom_debug", "rand", "thegraph-core", diff --git a/Cargo.toml b/Cargo.toml index 7c6305f1..9110f175 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ axum = { version = "0.7.5", default-features = false, features = [ "tokio", "original-uri", ] } -candidate-selection = { git = "https://github.com/edgeandnode/candidate-selection", rev = "4b6ce4a" } +candidate-selection = { git = "https://github.com/edgeandnode/candidate-selection", rev = "b58f057" } cost-model = { git = "https://github.com/graphprotocol/agora", rev = "3ed34ca" } futures = "0.3" graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.3.0", default-features = false }