Skip to content

Commit 001bd6a

Browse files
committed
Collect lint directives in one place
1 parent dd8cc55 commit 001bd6a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rustls-cert-gen/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
#![warn(missing_docs)]
21
//! This library wraps [rcgen] to provide a simple API to generate TLS
32
//! certificate-chains. Its primary intent is to ease development of
43
//! applications that verify chains of trust. It can be used for
54
//! whatever purpose you may need a TLS certificate-chain.
65
7-
#![warn(unreachable_pub)]
6+
#![warn(missing_docs, unreachable_pub)]
87

98
mod cert;
109
pub use cert::{Ca, CaBuilder, CertificateBuilder, EndEntity, EndEntityBuilder};

0 commit comments

Comments
 (0)