Skip to content

Commit 7502ebf

Browse files
committed
Add provider to the crate documentation
1 parent bc1a9f8 commit 7502ebf

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

provider/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Below is a list of currently available time zone providers.
2222

2323
- `ZoneInfo64TzdbProvider`: a provider using ICU4C's zoneinfo64 resource bundle (enable with `zoneinfo64` features flag)
2424
- `FsTzdbProvider`: a provider that reads and parses tzdata at runtime from the host file system's
25-
TZif files (enable with `tzif` feature flag)
26-
- `CompiledTzdbProvider`: a provider that reads and parses tzdata at runtime from TZif's compiled
27-
into the application (enable with `tzif` feature flag)
28-
29-
Coming soon (hopefully), a zero copy compiled tzdb provider (see `experimental_tzif` for more).
25+
TZif files (enable with `tzif` feature flag)
26+
- `CompiledTzdbProvider`: a provider that reads and parses tzdata at runtime from TZifs compiled
27+
into the application (enable with `tzif` feature flag)
28+
- `ZeroCompiledTzdbProvider`: a provider that deserializes time zone data from TZifs compiled
29+
into the application (enable with `experimental_tzif` feature flag)
3030

3131
### Time zone provider traits
3232

provider/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
//! - `ZoneInfo64TzdbProvider`: a provider using ICU4C's zoneinfo64 resource bundle (enable with `zoneinfo64` features flag)
2020
//! - `FsTzdbProvider`: a provider that reads and parses tzdata at runtime from the host file system's
2121
//! TZif files (enable with `tzif` feature flag)
22-
//! - `CompiledTzdbProvider`: a provider that reads and parses tzdata at runtime from TZif's compiled
22+
//! - `CompiledTzdbProvider`: a provider that reads and parses tzdata at runtime from TZifs compiled
2323
//! into the application (enable with `tzif` feature flag)
24-
//!
25-
//! Coming soon (hopefully), a zero copy compiled tzdb provider (see `experimental_tzif` for more).
24+
//! - `ZeroCompiledTzdbProvider`: a provider that deserializes time zone data from TZifs compiled
25+
//! into the application (enable with `experimental_tzif` feature flag)
2626
//!
2727
//! ## Time zone provider traits
2828
//!

0 commit comments

Comments
 (0)