From 9a859e281a23d36c45659718d17f218b5aa8b552 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 8 Jul 2022 19:19:55 -0700 Subject: [PATCH 1/2] Indicate that we forbid unsafe code Makes this show up as clean on `cargo-geiger` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 4790e08..3c15b19 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ #![no_std] +#![forbid(unsafe_code)] #[macro_export] macro_rules! impl_mirrored { From b7d3590ceaa78c9ef21aaf636c4d38154635ef40 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Tue, 31 Jan 2023 15:00:23 -0800 Subject: [PATCH 2/2] Bump to 0.1.1 --- Cargo.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8d6e0a8..e516ad7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,8 @@ [package] name = "tinyvec_macros" -version = "0.1.0" +version = "0.1.1" authors = ["Soveu "] edition = "2018" license = "MIT OR Apache-2.0 OR Zlib" repository = "https://github.com/Soveu/tinyvec_macros" description = "Some macros for tiny containers" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies]