#![cfg_attr(not(feature = "std"), no_std)]
pub mod convert;
pub mod dropframe;
pub mod error;
pub mod format;
pub mod framerate;
pub mod parse;
pub mod time_range;
pub mod timecode;
pub use error::TimecodeError;
pub use framerate::{FrameRate, Rational};
pub use time_range::TimeRange;
pub use timecode::Timecode;