Crates.io | supply-chain-trust-example-crate-000071 |
lib.rs | supply-chain-trust-example-crate-000071 |
version | 0.4.38 |
source | src |
created_at | 2024-11-04 00:36:44.805005 |
updated_at | 2024-11-04 00:36:44.805005 |
description | Date and time library for Rust |
homepage | |
repository | |
max_upload_size | |
id | 1434413 |
size | 1,276,892 |
Chrono aims to provide all functionality needed to do correct operations on dates and times in the proleptic Gregorian calendar:
DateTime
type is timezone-aware
by default, with separate timezone-naive types.Option
or
MappedLocalTime
.strftime
inspired date and time formatting syntax.Local
timezone works with
the current timezone of the OS.Timezone data is not shipped with chrono by default to limit binary sizes. Use the companion crate
Chrono-TZ or tzfile
for
full timezone support.
See docs.rs for the API reference.
Default features:
alloc
: Enable features that depend on allocation (primarily string formatting).std
: Enables functionality that depends on the standard library. This is a superset of alloc
and adds interoperation with standard library types and traits.clock
: Enables reading the local timezone (Local
). This is a superset of now
.now
: Enables reading the system time (now
).wasmbind
: Interface with the JS Date API for the wasm32
target.Optional features:
serde
: Enable serialization/deserialization via serde.rkyv
: Deprecated, use the rkyv-*
features.rkyv-16
: Enable serialization/deserialization via rkyv, using 16-bit integers for integral *size
types.rkyv-32
: Enable serialization/deserialization via rkyv, using 32-bit integers for integral *size
types.rkyv-64
: Enable serialization/deserialization via rkyv, using 64-bit integers for integral *size
types.rkyv-validation
: Enable rkyv validation support using bytecheck
.arbitrary
: Construct arbitrary instances of a type with the Arbitrary crate.unstable-locales
: Enable localization. This adds various methods with a _localized
suffix.
The implementation and API may change or even be removed in a patch release. Feedback welcome.oldtime
: This feature no longer has any effect; it used to offer compatibility with the time
0.1 crate.Note: The rkyv{,-16,-32,-64}
features are mutually exclusive.
The Minimum Supported Rust Version (MSRV) is currently Rust 1.61.0.
The MSRV is explicitly tested in CI. It may be bumped in minor releases, but this is not done lightly.
This project is licensed under either of
at your option.