Skip to content

Commit c64dca0

Browse files
zeroize_derive v1.0.1 (#506)
1 parent b029ab0 commit c64dca0

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zeroize/derive/CHANGES.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
## [1.0.0] (2019-10-13)
1+
## 1.0.1 (2019-09-15)
22

3-
- Initial 1.0 release
3+
- Add docs for the `Zeroize` proc macro ([#504])
4+
5+
[#504]: https://github.com/iqlusioninc/crates/pull/504
46

5-
[1.0.0]: https://github.com/iqlusioninc/crates/pull/279
7+
## 1.0.0 (2019-10-13)
8+
9+
- Initial 1.0 release

zeroize/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zeroize_derive"
33
description = "Custom derive support for zeroize"
4-
version = "1.0.0"
4+
version = "1.0.1"
55
authors = ["Tony Arcieri <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77
edition = "2018"

zeroize/derive/src/lib.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
//! Custom derive support for `zeroize`
22
33
#![crate_type = "proc-macro"]
4-
#![deny(
5-
rust_2018_idioms,
6-
trivial_casts,
7-
unused_lifetimes,
8-
unused_qualifications
9-
)]
104
#![forbid(unsafe_code)]
5+
#![warn(rust_2018_idioms, trivial_casts, unused_qualifications)]
116

127
use proc_macro2::TokenStream;
138
use quote::quote;

0 commit comments

Comments
 (0)