-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
369 additions
and
172 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Project Dependencies | ||
Package: fyi | ||
Version: 0.13.6 | ||
Generated: 2024-05-27 17:54:01 UTC | ||
Version: 0.14.0 | ||
Generated: 2024-09-05 19:50:11 UTC | ||
|
||
| Package | Version | Author(s) | License | | ||
| ---- | ---- | ---- | ---- | | ||
| [argyle](https://github.com/Blobfolio/argyle) | 0.7.2 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [argyle](https://github.com/Blobfolio/argyle) | 0.8.1 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [const_fn](https://github.com/taiki-e/const_fn) | 0.4.10 | | Apache-2.0 or MIT | | ||
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.1 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.13.6 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.3 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.14.0 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [tz-rs](https://github.com/x-hgg-x/tz-rs) | 0.6.14 | x-hgg-x | Apache-2.0 or MIT | | ||
| [utc2k](https://github.com/Blobfolio/utc2k) | 0.8.0 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | | ||
| [utc2k](https://github.com/Blobfolio/utc2k) | 0.9.1 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL | |
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,10 +1,9 @@ | ||
[package] | ||
name = "fyi" | ||
version = "0.13.6" | ||
version = "0.14.0" | ||
license = "WTFPL" | ||
authors = ["Blobfolio, LLC. <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.72" | ||
description = "A dead-simple CLI status message printer for use in BASH scripts, etc." | ||
repository = "https://github.com/Blobfolio/fyi" | ||
publish = false | ||
|
@@ -172,7 +171,7 @@ path = "../fyi_msg" | |
dactyl = "0.7.*" | ||
|
||
[dependencies.argyle] | ||
version = "0.7.*" | ||
version = "0.8.*" | ||
features = [ "dynamic-help" ] | ||
|
||
[dependencies.fyi_msg] | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "fyi_msg" | ||
version = "0.13.6" | ||
version = "0.14.0" | ||
authors = ["Blobfolio, LLC. <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.72" | ||
rust-version = "1.81" | ||
description = "Simple ANSI-formatted, prefixed messages for console printing." | ||
license = "WTFPL" | ||
repository = "https://github.com/Blobfolio/fyi" | ||
|
@@ -38,12 +38,12 @@ version = "0.1.*" | |
optional = true | ||
|
||
[dependencies.utc2k] | ||
version = "0.8.*" | ||
version = "0.9.*" | ||
features = [ "local" ] | ||
optional = true | ||
|
||
[dev-dependencies] | ||
brunch = "0.5.*" | ||
brunch = "0.6.*" | ||
rayon = "1.10.*" | ||
|
||
[[bench]] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/*! | ||
# FYI Msg: Kinds | ||
*/ | ||
|
||
use super::Msg; | ||
use std::ops::Deref; | ||
|
||
|
Oops, something went wrong.