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
29#[cfg(feature = "pkg")]
30pub mod pkg;
31
32#[cfg(feature = "wasm")]
33pub mod js;
34
35#[cfg(feature = "json")]
36pub mod json;
37
38#[cfg(feature = "toml")]
39pub mod toml;
40
41#[cfg(feature = "yaml")]
42pub mod yaml;
43
44#[cfg(feature = "xml")]
45pub mod xml;
46
47#[cfg(feature = "urlencoded")]
48pub mod urlencoded;
49
50#[cfg(feature = "docx")]
51pub mod docx;
52
53#[cfg(feature = "image")]
54pub mod image;
55
56#[cfg(feature = "pdf")]
57pub mod pdf;
58
59#[cfg(test)]
60mod tests;