From 6081b55d3941012332001fe699a9b29618ab6437 Mon Sep 17 00:00:00 2001 From: mpw Date: Wed, 20 Sep 2023 10:27:48 -0300 Subject: [PATCH] remove deprecated FaucetError from solana_client errorkind --- crates/core/Cargo.toml | 2 +- crates/core/src/triage.rs | 1 - rust-toolchain.toml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 06f62bd..c6407bd 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holaplex-hub-core" -version = "0.5.5" +version = "0.5.6" authors = [ "Holaplex ", ] diff --git a/crates/core/src/triage.rs b/crates/core/src/triage.rs index 20541c6..542e527 100644 --- a/crates/core/src/triage.rs +++ b/crates/core/src/triage.rs @@ -177,7 +177,6 @@ impl Triage for solana_client::client_error::ClientError { | ClientErrorKind::SerdeJson(_) | ClientErrorKind::SigningError(_) | ClientErrorKind::TransactionError(_) - | ClientErrorKind::FaucetError(_) | ClientErrorKind::Custom(_) => Severity::Permanent, } } diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 1145784..db8508b 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2022-11-08" +channel = "1.71.0" components = [ "cargo", "clippy",