diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
commit | 837b550238aa671a591ccf282dddeab29cadb206 (patch) | |
tree | 914b6b8862bace72bd3245ca184d374b08d8a672 /vendor/der/src/reader.rs | |
parent | Adding debian version 1.70.0+dfsg2-1. (diff) | |
download | rustc-837b550238aa671a591ccf282dddeab29cadb206.tar.xz rustc-837b550238aa671a591ccf282dddeab29cadb206.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/der/src/reader.rs')
-rw-r--r-- | vendor/der/src/reader.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/der/src/reader.rs b/vendor/der/src/reader.rs index b917323c2..ea52f7bde 100644 --- a/vendor/der/src/reader.rs +++ b/vendor/der/src/reader.rs @@ -1,6 +1,6 @@ //! Reader trait. -mod nested; +pub(crate) mod nested; #[cfg(feature = "pem")] pub(crate) mod pem; pub(crate) mod slice; @@ -135,7 +135,6 @@ pub trait Reader<'r>: Sized { /// Read a byte vector of the given length. #[cfg(feature = "alloc")] - #[cfg_attr(docsrs, doc(cfg(feature = "alloc")))] fn read_vec(&mut self, len: Length) -> Result<Vec<u8>> { let mut bytes = vec![0u8; usize::try_from(len)?]; self.read_into(&mut bytes)?; |