You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The time zone setting for Windows was unsupported, so it is now supported.
In making this correction, a new crate was added.
Also, the difference appears in Cargo.lock, but since Cargo.lock is generated automatically, so I added it to .gitignore.
Reference: https://github.com/github/gitignore/blob/main/Rust.gitignore
The code seems quite complicated and I’ve honestly no idea what it does, do you think you could simplify and explain it? I don’t think we need to use Arc for timezones in exa for example.
I see why Cargo.lock should not be removed.
I would like to correct this.
I am just modifying from TimeZoneSource::Static() to TimeZoneSource::Runtime() and setting the appropriate time zone.
The basic structure of the source code has not changed much from the original one.
the reason for using Arc is to match the type of the original source code.
The source code of zoneinfo_compiled was used as a reference.
This file contains hidden or 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
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.
The time zone setting for Windows was unsupported, so it is now supported.
In making this correction, a new crate was added.
Also, the difference appears in Cargo.lock, but since Cargo.lock is generated automatically, so I added it to .gitignore.
Reference: https://github.com/github/gitignore/blob/main/Rust.gitignore