Skip to content

Commit

Permalink
Merge pull request #12 from koushiro/works
Browse files Browse the repository at this point in the history
Downgrade MSRV to 1.31
  • Loading branch information
tailhook authored Jan 18, 2020
2 parents 4a40682 + b7da4ab commit da77235
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ before_cache:
jobs:
include:
- os: linux
rust: 1.32.0
rust: 1.31.0
- os: linux
rust: stable
- os: linux
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ path = "src/lib.rs"
[dev-dependencies]
time = "0.1"
chrono = "0.4"
rand = "0.7"
rand = "0.6"
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ mod duration;
mod wrapper;
mod date;

pub use duration::{parse_duration, Error as DurationError};
pub use duration::{format_duration, FormattedDuration};
pub use wrapper::{Duration, Timestamp};
pub use date::{parse_rfc3339, parse_rfc3339_weak, Error as TimestampError};
pub use date::{
pub use self::duration::{parse_duration, Error as DurationError};
pub use self::duration::{format_duration, FormattedDuration};
pub use self::wrapper::{Duration, Timestamp};
pub use self::date::{parse_rfc3339, parse_rfc3339_weak, Error as TimestampError};
pub use self::date::{
format_rfc3339, format_rfc3339_micros, format_rfc3339_millis, format_rfc3339_nanos,
format_rfc3339_seconds,
};
pub use date::{Rfc3339Timestamp};
pub use self::date::{Rfc3339Timestamp};

0 comments on commit da77235

Please sign in to comment.