From 20ed25772c6500a7895c8f4599bc8919cb668a70 Mon Sep 17 00:00:00 2001 From: David Koloski Date: Wed, 24 Nov 2021 11:47:11 -0500 Subject: [PATCH] Release 0.6.6 Fixes ptr_meta pulling in std by default and updates rustdoc lint names --- bytecheck/Cargo.toml | 6 +++--- bytecheck/src/lib.rs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bytecheck/Cargo.toml b/bytecheck/Cargo.toml index 94cfcf3..60647a7 100644 --- a/bytecheck/Cargo.toml +++ b/bytecheck/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bytecheck" -version = "0.6.5" +version = "0.6.6" authors = ["David Koloski "] edition = "2018" description = "Derive macro for bytecheck" @@ -15,7 +15,7 @@ readme = "crates-io.md" [dependencies] bytecheck_derive = { version = "=0.6.5", path = "../bytecheck_derive", default-features = false } -ptr_meta = "0.1" +ptr_meta = { version = "0.1", default-features = false } simdutf8 = { version = "0.1", default-features = false, optional = true } # Support for various common crates. These are primarily to get users off the ground and build some @@ -31,4 +31,4 @@ uuid = { version = "0.8", optional = true } default = ["std"] verbose = [] simdutf8_std = ["simdutf8/std"] -std = ["bytecheck_derive/std"] +std = ["ptr_meta/std", "bytecheck_derive/std"] diff --git a/bytecheck/src/lib.rs b/bytecheck/src/lib.rs index bdfe134..491b14d 100644 --- a/bytecheck/src/lib.rs +++ b/bytecheck/src/lib.rs @@ -116,8 +116,8 @@ //! - [`uuid`](https://docs.rs/uuid) #![deny( - broken_intra_doc_links, - missing_crate_level_docs, + rustdoc::broken_intra_doc_links, + rustdoc::missing_crate_level_docs, missing_docs, rust_2018_compatibility, rust_2018_idioms,