-
Notifications
You must be signed in to change notification settings - Fork 543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fallable constructors for less panics (#815) #996
Closed
+4,870
−5,139
Closed
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
8b3732f
Fallable constructors for less panics (#815)
Zomtir ee9871d
reconstruct_from_timestamp
Zomtir e29524f
ParsingNotEnough seems better for partial fields
Zomtir d1bd74e
Finished regular tests, doctests missing
Zomtir 63c3494
Fixed all tests
Zomtir d27efa6
Readded lost locales
Zomtir 5b1b711
arbitiary
Zomtir 6eb7743
cargo fmt
Zomtir 5a8eff8
Fixed some warnings
Zomtir 6191156
restore some tests
Zomtir 225b3e4
cosmetic fix
Zomtir 228a689
moving forward
Zomtir db74841
time to be or not to be
Zomtir 6655ba3
UTC/Local date stuff
Zomtir 890e4c9
Test fixes
Zomtir 34f05c1
Missed some utc/local date offset
Zomtir 92a4308
Fix more tests
Zomtir 0d0d5ba
Test fixing
Zomtir ec96378
More test fixes
Zomtir 7a39b6e
Rounding Error
Zomtir 7f8f39b
Move test_duration_round_error
Zomtir af68091
Test fixing...
Zomtir a3a8e45
Test fixing...2
Zomtir 251f7b9
some ymd
Zomtir 7652f24
final ymd
Zomtir de821dc
doctest
Zomtir a817932
doctests
Zomtir 0432bd1
Doctests pass again
Zomtir 5e51295
and_hms_opt for backwards compablity
Zomtir 07df76e
cosmetic changes
Zomtir 3695075
Merge branch 'main' into fallible-constructors
Zomtir 33c0647
Turn result to option
Zomtir 3c319ca
Fix clippy
Zomtir a52b57d
all features
Zomtir de66bf2
feature check
Zomtir d7f0374
serde error handling
Zomtir 246e332
wasm
Zomtir eda476a
remove vscode config
Zomtir 816df27
ymd gone
Zomtir 4d4197e
serde error
Zomtir b78a655
From<serde_json::Error>
Zomtir ca5276c
test returns
Zomtir b2f508f
windows stuff
Zomtir 573535d
cargo fmt
Zomtir 4fb5696
more windows
Zomtir 7386f59
cargo fmt
Zomtir d41abc1
more windows
Zomtir 64bbb78
Removed SystemError
Zomtir 79f21ca
cargo fmt...
Zomtir a46d79a
IO direct
Zomtir ce5c11a
io error test
Zomtir c7aa463
cargo fmt
Zomtir 0e341c0
serde_json only as test
Zomtir 9e317ff
serde_json non-dev
Zomtir 74c975f
serde_json dependencies
Zomtir File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This will be causing the MSRV failure (one of the two CI failures) due to:
There are suggestions that we will probably go higher than the current
1.48
(see: #995), but it may not go as high as1.60
(put another way, we probably can't justify moving to1.60
just to get thisdep:{crate}
syntax)