diff --git a/Cargo.toml b/Cargo.toml index 6cccdc9..b9de4b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rend" -version = "0.3.2" +version = "0.3.3" authors = ["David Koloski "] edition = "2018" description = "Endian-aware primitives for Rust" @@ -14,7 +14,7 @@ readme = "crates-io.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bytecheck = { version = "0.6.0", optional = true, default-features = false } +bytecheck = { version = "0.6", optional = true, default-features = false } [features] default = ["std"] diff --git a/src/lib.rs b/src/lib.rs index c57fd3e..412f94e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,7 @@ #![cfg_attr(not(feature = "std"), no_std)] #![deny( missing_docs, - missing_crate_level_docs, + rustdoc::missing_crate_level_docs, rust_2018_compatibility, rust_2018_idioms, future_incompatible,