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
40
41
42
43
44
45
46
47
//! Re-exports of external crate dependencies for consistent access across jacquard.
//!
//! This module centralises all external crate access so downstream crates and generated code
//! reference known-good versions through a single path. This allows for easier dependency
//! management and version upgrades across the workspace.
/// Re-export of the [`bytes`](https://docs.rs/bytes/) crate for byte buffer operations.
pub use bytes;
/// Re-export of the [`chrono`](https://docs.rs/chrono/) crate for date/time handling.
pub use chrono;
/// Re-export of the [`smol_str`](https://docs.rs/smol_str/) crate for optimized small strings.
pub use smol_str;
/// Re-export of the [`fluent_uri`](https://docs.rs/fluent-uri/) crate for RFC 3986 compliant URI parsing and manipulation.
pub use fluent_uri;
/// Re-exports of crates used in code generation contexts.
///
/// This submodule is hidden from documentation and intended for use by generated code
/// and related internal tooling. Stability guarantees may differ from the public API.