Skip to content

Commit

Permalink
Release 0.6.6
Browse files Browse the repository at this point in the history
Fixes ptr_meta pulling in std by default and updates rustdoc lint names
  • Loading branch information
djkoloski committed Nov 24, 2021
1 parent 1399751 commit 20ed257
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bytecheck/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bytecheck"
version = "0.6.5"
version = "0.6.6"
authors = ["David Koloski <djkoloski@gmail.com>"]
edition = "2018"
description = "Derive macro for bytecheck"
Expand All @@ -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
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions bytecheck/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 20ed257

Please sign in to comment.