Skip to content

Commit

Permalink
fix: Replace chrono-english with interim as drop-in
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed May 31, 2024
1 parent bd977b7 commit 0fbe0d3
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 23 deletions.
79 changes: 59 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rust-version = "1.67"
[workspace.dependencies]
# Chrono version is hard pinned to a specific version.
# See https://github.com/Nukesor/pueue/issues/534
chrono = { version = "=0.4.35", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
command-group = "5"
log = "0.4"
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion pueue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0"
chrono = { workspace = true }
chrono-english = "0.1"
interim = { version="0.1.2", features = ["chrono"] }
clap = { version = "4.5.1", features = ["derive", "cargo", "help"] }
clap_complete = "4.5.1"
clap_complete_nushell = "4.5.1"
Expand Down
2 changes: 1 addition & 1 deletion pueue/src/client/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use std::path::PathBuf;

use chrono::prelude::*;
use chrono::TimeDelta;
use chrono_english::*;
use clap::ArgAction;
use clap::{Parser, ValueEnum, ValueHint};
use interim::*;

use pueue_lib::network::message::Signal;

Expand Down

0 comments on commit 0fbe0d3

Please sign in to comment.