ratio_clone/
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
11#[cfg(feature = "marc")]
12pub mod marc;
13pub mod traits;
14
15#[cfg(feature = "marc")]
16pub use marc::*;
17pub use traits::*;