Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02d3f77

Browse files
committedMar 26, 2025·
Bump MSRV to v1.61
1 parent d3c0387 commit 02d3f77

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
# - src/lib.rs
2020
# - Cargo.toml
2121
# - README.md
22-
rust_minver: 1.60.0
22+
rust_minver: 1.61.0
2323

2424
defaults:
2525
run:

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ When updating this, also update:
4747
- Cargo.toml
4848
-->
4949

50-
The current minimum supported Rust version is 1.60.
50+
The current minimum supported Rust version is 1.61.
5151

5252
`spdlog-rs` is built against the latest Rust stable release, it is not guaranteed to build on Rust versions earlier than the minimum supported version.
5353

‎spdlog-internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "spdlog-internal"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.60"
5+
rust-version = "1.61"
66
description = "Internal private common code for crate \"spdlog-rs\""
77
repository = "https://github.com/SpriteOvO/spdlog-rs"
88
license = "MIT OR Apache-2.0"

‎spdlog-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "spdlog-macros"
33
version = "0.2.0"
44
edition = "2021"
5-
rust-version = "1.60"
5+
rust-version = "1.61"
66
description = "Macros implementation of crate \"spdlog-rs\""
77
repository = "https://github.com/SpriteOvO/spdlog-rs"
88
license = "MIT OR Apache-2.0"

‎spdlog/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "spdlog-rs"
33
version = "0.4.1"
44
edition = "2021"
5-
rust-version = "1.60"
5+
rust-version = "1.61"
66
description = "Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog"
77
repository = "https://github.com/SpriteOvO/spdlog-rs"
88
license = "MIT OR Apache-2.0"
@@ -59,7 +59,7 @@ spdlog-internal = { version = "=0.1.0", path = "../spdlog-internal", optional =
5959
spdlog-macros = { version = "=0.2.0", path = "../spdlog-macros" }
6060
spin = "0.9.8"
6161
thiserror = "1.0.37"
62-
value-bag = { version = "1.10.0", features = ["owned", "inline-i128"] }
62+
value-bag = { version = "1.11.1", features = ["owned", "inline-i128"] }
6363

6464
[target.'cfg(windows)'.dependencies]
6565
winapi = { version = "0.3.9", features = ["consoleapi", "debugapi", "handleapi", "processenv", "processthreadsapi", "winbase", "wincon"] }

‎spdlog/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
//! - README.md
221221
//! -->
222222
//!
223-
//! The current minimum supported Rust version is 1.60.
223+
//! The current minimum supported Rust version is 1.61.
224224
//!
225225
//! `spdlog-rs` is built against the latest Rust stable release, it is not
226226
//! guaranteed to build on Rust versions earlier than the minimum supported

0 commit comments

Comments
 (0)
Please sign in to comment.