27
27
//! | `aws-lc-rs` | Enable use of the aws-lc-rs crate for cryptography. Previously this feature was named `aws_lc_rs`. |
28
28
29
29
#![ no_std]
30
- #![ warn( elided_lifetimes_in_paths, unreachable_pub, clippy:: use_self) ]
30
+ #![ warn(
31
+ elided_lifetimes_in_paths,
32
+ unnameable_types,
33
+ unreachable_pub,
34
+ clippy:: use_self
35
+ ) ]
31
36
#![ deny( missing_docs, clippy:: as_conversions) ]
32
37
#![ allow(
33
38
clippy:: len_without_is_empty,
@@ -74,10 +79,11 @@ pub(crate) mod test_utils;
74
79
pub use {
75
80
cert:: Cert ,
76
81
crl:: {
77
- BorrowedCertRevocationList , BorrowedRevokedCert , CertRevocationList , ExpirationPolicy ,
78
- RevocationCheckDepth , RevocationOptions , RevocationOptionsBuilder , RevocationReason ,
79
- UnknownStatusPolicy ,
82
+ BorrowedCertRevocationList , BorrowedRevokedCert , CertRevocationList , CrlsRequired ,
83
+ ExpirationPolicy , RevocationCheckDepth , RevocationOptions , RevocationOptionsBuilder ,
84
+ RevocationReason , UnknownStatusPolicy ,
80
85
} ,
86
+ der:: DerIterator ,
81
87
end_entity:: EndEntityCert ,
82
88
error:: {
83
89
DerTypeId , Error , InvalidNameContext , UnsupportedSignatureAlgorithmContext ,
@@ -86,7 +92,7 @@ pub use {
86
92
rpk_entity:: RawPublicKeyEntity ,
87
93
trust_anchor:: anchor_from_trusted_cert,
88
94
verify_cert:: {
89
- ExtendedKeyUsageValidator , KeyPurposeId , KeyPurposeIdIter , KeyUsage ,
95
+ ExtendedKeyUsageValidator , IntermediateIterator , KeyPurposeId , KeyPurposeIdIter , KeyUsage ,
90
96
RequiredEkuNotFoundContext , VerifiedPath ,
91
97
} ,
92
98
} ;
0 commit comments