From 93799da4be9405bd15edb7d6d9af24837921d2a3 Mon Sep 17 00:00:00 2001 From: Nikolay Kurtov Date: Mon, 29 Aug 2022 18:36:45 +0200 Subject: [PATCH] Enable shardnet feature for ping --- tools/ping/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/ping/Cargo.toml b/tools/ping/Cargo.toml index 13fc61616ed..f0ca788b2d1 100644 --- a/tools/ping/Cargo.toml +++ b/tools/ping/Cargo.toml @@ -18,13 +18,13 @@ prometheus = { version = "0.13.1", features = ["push"] } tokio = { version = "1.16.1", features = ["full"]} tracing = "0.1.13" -nearcore = { path = "../../nearcore" } +nearcore = { path = "../../nearcore", features = ["shardnet"] } near-chain = { path = "../../chain/chain" } near-chain-configs = { path = "../../core/chain-configs" } near-crypto = { path = "../../core/crypto" } near-metrics = { path = "../../core/metrics" } -near-network = { path = "../../chain/network" } +near-network = { path = "../../chain/network", features = ["shardnet"] } near-network-primitives = { path = "../../chain/network-primitives" } near-o11y = { path = "../../core/o11y" } -near-primitives = { path = "../../core/primitives" } -near-store = { path = "../../core/store" } \ No newline at end of file +near-primitives = { path = "../../core/primitives", features = ["shardnet"] } +near-store = { path = "../../core/store" }