Skip to content

Commit

Permalink
Update standback
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Jul 27, 2021
1 parent a6210d1 commit 778a4bd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ itoa = { version = "0.4.7", optional = true }
quickcheck-dep = { package = "quickcheck", version = "1.0.3", default-features = false, optional = true }
rand = { version = "0.8.3", optional = true, default-features = false }
serde = { version = "1.0.125", optional = true, default-features = false }
standback = { version = "0.3.2", default-features = false, features = ["msrv-1-46"] }
standback = { version = "0.3.5", default-features = false, features = ["msrv-1-46"] }
time-macros = { version = "=0.2.0-alpha.1", path = "time-macros", optional = true }

[target.'cfg(unsound_local_offset)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/duration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use core::time::Duration as StdDuration;

use const_fn::const_fn;
#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

use crate::error;
#[cfg(feature = "std")]
Expand Down
2 changes: 1 addition & 1 deletion src/formatting/formattable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use core::ops::Deref;
use std::io;

#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

use crate::format_description::well_known::Rfc3339;
use crate::format_description::FormatItem;
Expand Down
2 changes: 1 addition & 1 deletion src/formatting/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub(crate) mod formattable;
use std::io;

#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

pub use self::formattable::Formattable;
use crate::format_description::{modifier, Component};
Expand Down
2 changes: 1 addition & 1 deletion src/parsing/combinator.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Implementations of the low-level parser combinators.
#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

use crate::format_description::modifier::Padding;
use crate::parsing::shim::{Integer, IntegerParseBytes};
Expand Down
2 changes: 1 addition & 1 deletion src/parsing/parsable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use core::convert::TryInto;
use core::ops::Deref;

#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

use crate::error::TryFromParsed;
use crate::format_description::well_known::Rfc3339;
Expand Down
2 changes: 1 addition & 1 deletion src/serde/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use serde::de::Error as _;
use serde::ser::Error as _;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
#[allow(unused_imports)]
use standback::prelude::*;
use standback::shim::*;

#[cfg(feature = "serde-human-readable")]
use crate::error;
Expand Down

0 comments on commit 778a4bd

Please sign in to comment.