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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* datum-rs - Quick to implement S-expression format
* Written starting in 2024 by contributors (see CREDITS.txt at repository's root)
* To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
* A copy of the Unlicense should have been supplied as COPYING.txt in this repository. Alternatively, you can find it at <https://unlicense.org/>.
*/
//! The `datum` crate provides reading/writing utilities for the human-writable data format of the same name.
//! For further information, see <https://github.com/20kdc/datum> and the documentation there.
// Meta
extern crate alloc;
pub use *;
// Encoding
pub use *;
pub use *;
pub use *;
// Tokenization
pub use *;
pub use *;
// Values
pub use *;
// Writing
pub use *;
// AST (alloc-only)
pub use *;
// Pipelines (partially alloc-only)
pub use *;
// Big test battery
// Integrations