From 59f1898351d40c5782dcccfa8fdcd51d37e8191f Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Thu, 4 May 2023 21:50:07 +0800
Subject: [PATCH] Get rid of no-panic

It isn't used and didn't seem to work with panic=abort experiments
---
 Cargo.toml     | 1 -
 src/cliauth.rs | 1 -
 2 files changed, 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 361ba7a..718f669 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,7 +31,6 @@ snafu = { version = "0.7", default-features = false, features = ["rust_1_61"] }
 # TODO: check that log macro calls disappear in no_std builds
 log = { version = "0.4" }
 heapless = "0.7.10"
-no-panic = "0.1"
 
 # allows avoiding utf8 for SSH identifier names
 ascii = { version = "1.0", default-features = false }
diff --git a/src/cliauth.rs b/src/cliauth.rs
index 18b4440..80af9e3 100644
--- a/src/cliauth.rs
+++ b/src/cliauth.rs
@@ -6,7 +6,6 @@ use {
 
 use core::task::{Poll, Waker};
 use heapless::{String, Vec};
-use no_panic::no_panic;
 use pretty_hex::PrettyHex;
 
 
-- 
GitLab