Skip to content

Commit

Permalink
rustfmt to reformat imports
Browse files Browse the repository at this point in the history
(with rustls's config)
  • Loading branch information
ctz committed Sep 30, 2024
1 parent 7bbc08e commit f5d49b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ extern crate std;
mod tests;

mod pemfile;
#[cfg(feature = "std")]
use core::iter;
/// --- Legacy APIs:
#[cfg(feature = "std")]
use std::io;

#[cfg(feature = "std")]
pub use pemfile::{read_all, read_one};
pub use pemfile::{read_one_from_slice, Error, Item};
Expand All @@ -71,12 +77,6 @@ use pki_types::{
PrivatePkcs8KeyDer, PrivateSec1KeyDer, SubjectPublicKeyInfoDer,
};

#[cfg(feature = "std")]
use core::iter;
/// --- Legacy APIs:
#[cfg(feature = "std")]
use std::io;

/// Return an iterator over certificates from `rd`.
///
/// Filters out any PEM sections that are not certificates and yields errors if a problem
Expand Down

0 comments on commit f5d49b2

Please sign in to comment.