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 current readme describes the clock feature as:
clock: Enables reading the system time (now) and local timezone (Local).
And the main documentation in lib.rs:
clock: Enables reading the system time (now) that depends on the standard library for UNIX-like operating systems and the Windows API (winapi) for Windows.
The documentation in lib.rs still needs some updating, but at least we no longer it is "independent of whether std::time::SystemTime is present".
The chrono documentation describes the
clock
feature as follows:clock
: enables reading the system time (now
), independent of whetherstd::time::SystemTime
is present, depends on having a libc.But this is not the case:
clock
pulls instd
, and the implementation ofUtc::now()
is just a wrapper aroundstd::time::SystemTime::now()
.The text was updated successfully, but these errors were encountered: