Skip to content

Commit

Permalink
Add re-exports back (did not mean to do an incompatible API change)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjol committed Feb 12, 2024
1 parent 3855fad commit 537243f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sprintf"
version = "0.2.0"
version = "0.2.1"
edition = "2018"
authors = ["Thomas Jollans <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ mod format;
pub mod parser;

pub use format::Printf;
use parser::{parse_format_string, ConversionType, FormatElement, NumericParam};
use parser::{parse_format_string, FormatElement};
#[doc(hidden)]
pub use parser::{ConversionSpecifier, ConversionType, NumericParam};

/// Error type
#[derive(Debug, Clone, Copy, Error)]
Expand Down

0 comments on commit 537243f

Please sign in to comment.