From b18ce5eb8ef64e202f08e79b8f0e99a7d3ef35c4 Mon Sep 17 00:00:00 2001 From: irriden Date: Thu, 30 Nov 2023 03:31:42 +0000 Subject: [PATCH] remove test.rs that file is completely unused --- sphinx-key/src/test.rs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 sphinx-key/src/test.rs diff --git a/sphinx-key/src/test.rs b/sphinx-key/src/test.rs deleted file mode 100644 index 2323a48..0000000 --- a/sphinx-key/src/test.rs +++ /dev/null @@ -1,9 +0,0 @@ -use esp_idf_svc::sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported - -fn main() { - // Temporary. Will disappear once ESP-IDF 4.4 is released, but for now it is necessary to call this function once, - // or else some patches to the runtime implemented by esp-idf-sys might not link properly. - esp_idf_svc::sys::link_patches(); - - println!("Hello, world!"); -}