Make github ci use 1.59 for time depend and fix two clippy warnings

This commit is contained in:
Wyatt Herkamp 2022-09-12 18:53:15 -04:00
parent 3622e8f682
commit 13084ef732
2 changed files with 4 additions and 6 deletions

View file

@ -16,7 +16,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable, 1.57.0] rust: [stable, 1.59.0]
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master

View file

@ -44,7 +44,7 @@ mod atomic {
#[cfg(feature = "time")] #[cfg(feature = "time")]
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time}; use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
#[derive(Clone, Copy, Debug, PartialEq)] #[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum System { pub enum System {
Dos = 0, Dos = 0,
Unix = 3, Unix = 3,
@ -143,10 +143,8 @@ impl DateTime {
second: u8, second: u8,
) -> Result<DateTime, ()> { ) -> Result<DateTime, ()> {
if (1980..=2107).contains(&year) if (1980..=2107).contains(&year)
&& month >= 1 && (1..=12).contains(&month)
&& month <= 12 && (1..=31).contains(&day)
&& day >= 1
&& day <= 31
&& hour <= 23 && hour <= 23
&& minute <= 59 && minute <= 59
&& second <= 60 && second <= 60