Skip to main content

ratio_metadata/
lib.rs

1#![doc = include_str!("../README.md")]
2
3// ## License
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
6// If a copy of the MPL was not distributed with this file,
7// You can obtain one at <https://mozilla.org/MPL/2.0/>.
8//
9// **Code examples both in the docstrings and rendered documentation are free to use.**
10
11pub mod aggregate;
12pub mod category;
13pub mod filter;
14pub mod interner;
15pub mod metadata;
16pub mod store;
17pub mod transaction;
18
19pub use metadata::SimpleMetadata;
20pub use store::SimpleStore;