keramics_core/
lib.rs

1/* Copyright 2024-2025 Joachim Metz <joachim.metz@gmail.com>
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License. You may
5 * obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0
6 *
7 * Unless required by applicable law or agreed to in writing, software
8 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10 * License for the specific language governing permissions and limitations
11 * under the License.
12 */
13
14mod data_stream;
15mod enums;
16mod errors;
17mod fake_data_stream;
18pub mod formatters;
19pub mod macros;
20pub mod mediator;
21mod os_data_stream;
22
23pub use data_stream::{DataStream, DataStreamReference};
24pub use enums::ByteOrder;
25pub use errors::ErrorTrace;
26pub use fake_data_stream::{FakeDataStream, open_fake_data_stream};
27pub use os_data_stream::open_os_data_stream;