stof/
lib.rs

1//
2// Copyright 2024 Formata, Inc. All rights reserved.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//    http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17pub mod core;
18pub use core::*;
19
20pub mod data;
21pub use data::*;
22
23pub mod stof;
24pub use stof::*;
25
26pub mod text;
27pub mod bytes;
28
29pub mod gitbook;
30
31#[cfg(feature = "pkg")]
32pub mod pkg;
33
34#[cfg(feature = "wasm")]
35pub mod js;
36
37#[cfg(feature = "json")]
38pub mod json;
39
40#[cfg(feature = "toml")]
41pub mod toml;
42
43#[cfg(feature = "yaml")]
44pub mod yaml;
45
46#[cfg(feature = "xml")]
47pub mod xml;
48
49#[cfg(feature = "urlencoded")]
50pub mod urlencoded;
51
52#[cfg(feature = "docx")]
53pub mod docx;
54
55#[cfg(feature = "image")]
56pub mod image;
57
58#[cfg(feature = "pdf")]
59pub mod pdf;
60
61#[cfg(test)]
62mod tests;