converter_buddy 0.1.0

File format conversion library. Provides conversion utilities between files with different formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains the formats and their info used by the converter.
//!
//! Mainly used to get the list of supported formats and their info.
//! - crate::format::Format is an enumeration of supported formats.
//! - crate::format::info contains all additional informations about a format.
//!
//! # Examples

mod enumerator;
pub mod info;
mod utils;

pub use enumerator::Format;
pub use utils::*;