16 releases
new 0.2.10 | Jan 29, 2023 |
---|---|
0.2.9 | Jan 23, 2023 |
0.2.7 | Dec 27, 2022 |
0.2.3 | Nov 22, 2022 |
0.1.10 | Apr 30, 2022 |
#32 in Date and time
614 downloads per month
Used in 5 crates
54KB
1K
SLoC
ISO8601 Timestamp
This crate provides high-performance formatting and parsing routines for ISO8601 timestamps, primarily focused on UTC values but with support for parsing (and automatically applying) UTC Offsets.
The primary purpose of this is to keep the lightweight representation of timestamps within data structures, and only formatting it to a string when needed via Serde.
The Timestamp
struct is only 12 bytes, while the formatted strings can be as large as 35 bytes, and care is taken to avoid heap allocations when formatting.
Example:
use serde::{Serialize, Deserialize};
use smol_str::SmolStr; // stack-allocation for small strings
use iso8601_timestamp::Timestamp;
#[derive(Debug, Clone, Serialize)]
pub struct Event {
name: SmolStr,
ts: Timestamp,
value: i32,
}
when serialized to JSON could result in:
{
"name": "some_event",
"ts": "2021-10-17T02:03:01Z",
"value": 42
}
When serializing to non-human-readable formats, such as binary formats, the Timestamp
will be written as an i64
representing milliseconds since the Unix Epoch. This way it only uses 8 bytes instead of 24.
Similarly, when deserializing, it supports either an ISO8601 string or an i64
representing a unix timestamp in milliseconds.
Cargo Features
-
std
(default)- Enables standard library features, such as getting the current time.
-
lookup
(default)- Enables use of a 200-byte lookup table during formatting. Slightly faster with a hot cache. Disabling saves 200 bytes at a 3-4% slowdown.
-
serde
(default)- Enables serde implementations for
Timestamp
andTimestampStr
- Enables serde implementations for
-
verify
- Verifies numeric inputs when parsing and fails when non-numeric input is found.
- When disabled, parsing ignores invalid input, possibly giving garbage timestamps.
-
nightly
- Enables nightly-specific optimizations, but without it will fallback to workarounds to enable the same optimizations.
-
pg
- Enables
ToSql
/FromSql
implementations forTimestamp
so it can be directly stored/fetched from a PostgreSQL database usingrust-postgres
- Enables
-
rusqlite
- Enables
ToSql
/FromSql
implementations forTimestamp
so it can be stored/fetched from anrusqlite
/sqlite3
database
- Enables
-
schema
- Enables implementation for
JsonSchema
for generating a JSON schema on the fly usingschemars
.
- Enables implementation for
-
bson
- Enables
visit_map
implementation to handle deserialising BSON (MongoDB) DateTime format,{ $date: string }
.
- Enables
-
rand
- Enables
rand
implementations, to generate random timestamps.
- Enables
-
quickcheck
- Enables
quickcheck
'sArbitrary
implementation onTimestamp
- Enables
Dependencies
~0.8–4.5MB
~95K SLoC