Skip to content

Commit

Permalink
Update dependencies to their latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTMjugador committed Jan 18, 2025
1 parent cde9ab5 commit 4c40d85
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-2022, triple: x86_64-pc-windows-msvc }
version:
- 1.74.0 # MSRV
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions rrule-afl-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ rust-version.workspace = true

[dependencies]
afl = "*"
chrono = "0.4.19"
num-traits = "0.2.15"
chrono = "0.4.39"
num-traits = "0.2.19"

[dependencies.rrule]
path = "../rrule"

[features]
default = []
by-easter = ["rrule/by-easter"]
by-easter = ["rrule/by-easter"]
8 changes: 4 additions & 4 deletions rrule-debugger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ rust-version.workspace = true

[dependencies]
rrule = { path = "../rrule" }
chrono = "0.4.19"
clap = { version = "4.1.9", features = ["derive"] }
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive"] }
rrule-afl-fuzz = { version = "0.1.0", path = "../rrule-afl-fuzz" }
log = "0.4.16"
yansi = "0.5.1"
log = "0.4.25"
yansi = "1.0.1"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion rrule-debugger/src/simple_logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl log::Log for Logger {
Level::Debug => Paint::green("DEBUG"),
Level::Trace => Paint::magenta("TRACE"),
},
Paint::new(record.target()).dimmed(),
Paint::new(record.target()).dim(),
record.args()
);
}
Expand Down
20 changes: 10 additions & 10 deletions rrule/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ rust-version.workspace = true
edition.workspace = true

[dependencies]
chrono = "0.4.19"
chrono-tz = "0.9.0"
chrono = "0.4.39"
chrono-tz = "0.10.1"
lazy_static = "1.4.0"
log = "0.4.16"
regex = { version = "1.5.5", default-features = false, features = ["perf", "std"] }
clap = { version = "4.1.9", optional = true, features = ["derive"] }
thiserror = "1.0.30"
serde_with = { version = "3.8.1", optional = true }
log = "0.4.25"
regex = { version = "1.11.1", default-features = false, features = ["perf", "std"] }
clap = { version = "4.5.26", optional = true, features = ["derive"] }
thiserror = "2.0.11"
serde_with = { version = "3.12.0", optional = true }

[dev-dependencies]
serde_json = "1.0.80"
orig_serde = { package = "serde", version = "1.0.137", default-features = false, features = ["derive"]}
serde_json = "1.0.135"
orig_serde = { package = "serde", version = "1.0.217", default-features = false, features = ["derive"] }

[[bin]]
name = "rrule"
Expand All @@ -43,4 +43,4 @@ cli-tool = ["clap"]
serde = ["serde_with", "chrono/serde", "chrono-tz/serde"]

# Allows EXRULE's to be used in the `RRuleSet`.
exrule = []
exrule = []

0 comments on commit 4c40d85

Please sign in to comment.