-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary lazy_static dependency (#176)
This removes the `lazy_static` dependency, bumping the MSRV and this crate's major version. --------- Co-authored-by: Spenser Black <[email protected]> Co-authored-by: tison <[email protected]>
- Loading branch information
1 parent
037e091
commit 95b2de8
Showing
6 changed files
with
9 additions
and
13 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,22 +1,20 @@ | ||
[package] | ||
name = "colored" | ||
description = "The most simple way to add colors in your terminal" | ||
version = "2.2.0" | ||
version = "3.0.0" | ||
edition = "2021" | ||
authors = ["Thomas Wickham <[email protected]>"] | ||
license = "MPL-2.0" | ||
homepage = "https://github.com/mackwic/colored" | ||
repository = "https://github.com/mackwic/colored" | ||
readme = "README.md" | ||
keywords = ["color", "string", "term", "ansi_term", "term-painter"] | ||
rust-version = "1.70" | ||
rust-version = "1.80" | ||
|
||
[features] | ||
# with this feature, no color will ever be written | ||
no-color = [] | ||
|
||
[dependencies] | ||
lazy_static = "1" | ||
|
||
[target.'cfg(windows)'.dependencies.windows-sys] | ||
version = ">=0.48,<=0.59" | ||
|
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