-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detach from lazy_static, use std::sync::OnceLock instead
- Loading branch information
Showing
10 changed files
with
58 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "flexi_logger" | ||
version = "0.27.4" | ||
version = "0.27.5-unpublished" | ||
authors = ["emabee <[email protected]>"] | ||
categories = ["development-tools::debugging"] | ||
description = """ | ||
|
@@ -15,7 +15,7 @@ keywords = ["file", "logger"] | |
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/emabee/flexi_logger" | ||
rust-version = "1.67.1" | ||
rust-version = "1.70.0" | ||
|
||
[lib] | ||
doctest = false | ||
|
@@ -48,7 +48,6 @@ crossbeam-queue = { version = "0.3", optional = true } | |
flate2 = { version = "1.0", optional = true } | ||
glob = "0.3" | ||
hostname = { version = "0.3", optional = true } | ||
lazy_static = "1.4" | ||
log = { version = "0.4", features = ["std"] } | ||
notify-debouncer-mini = { version = "0.3", optional = true, default-features = false } | ||
regex = { version = "1.1", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98f1e9a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i would recommend not doing this as a patch, as increasing the MSRV could be breaking
98f1e9a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed :-)