-
-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use logarithms to calculate number of digits
- Loading branch information
Showing
7 changed files
with
21 additions
and
74 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "time-core" | |
version = "0.1.1" | ||
authors = ["Jacob Pratt <[email protected]>", "Time contributors"] | ||
edition = "2021" | ||
rust-version = "1.65.0" | ||
rust-version = "1.67.0" | ||
repository = "https://github.com/time-rs/time" | ||
keywords = ["date", "time", "calendar", "duration"] | ||
categories = ["date-and-time"] | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "time-macros" | |
version = "0.2.10" | ||
authors = ["Jacob Pratt <[email protected]>", "Time contributors"] | ||
edition = "2021" | ||
rust-version = "1.65.0" | ||
rust-version = "1.67.0" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jhpratt
Author
Member
|
||
repository = "https://github.com/time-rs/time" | ||
keywords = ["date", "time", "calendar", "duration"] | ||
categories = ["date-and-time"] | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "time" | |
version = "0.3.23" | ||
authors = ["Jacob Pratt <[email protected]>", "Time contributors"] | ||
edition = "2021" | ||
rust-version = "1.65.0" | ||
rust-version = "1.67.0" | ||
repository = "https://github.com/time-rs/time" | ||
homepage = "https://time-rs.github.io" | ||
keywords = ["date", "time", "calendar", "duration"] | ||
|
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 MSRV bump should result in a minor version bump of
time-macros
; releasing the patch version0.2.11
with the MSRV changes breaks the build for downstream users of this crate. Is there any chance of0.2.11
being yanked and replaced with0.3.0
?