1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Third-party feature integrations for NULID.
//!
//! This module contains optional integrations with external crates:
//! - `uuid`: UUID interoperability (conversion to/from [`uuid::Uuid`])
//! - `sqlx-postgres`: `PostgreSQL` database support via `SQLx`
//! - `sqlx-sqlite`: `SQLite` database support via `SQLx`
//! - `sqlx-mysql`: `MySQL`/`MariaDB` database support via `SQLx`
//! - `serde`: Serialization/deserialization support
//! - `postgres-types`: `PostgreSQL` type support via `postgres-types`
//! - `rkyv`: Zero-copy serialization support
//! - `chrono`: [`chrono::DateTime<Utc>`] support
//! - `jiff`: [`jiff::Timestamp`] support