Skip to main content

bse/
lib.rs

1#![doc = include_str!("../README.md")]
2#![allow(non_snake_case)]
3#![allow(clippy::needless_range_loop)]
4
5pub mod api;
6pub mod cli;
7pub mod compose;
8pub mod dir_reader;
9pub mod dir_writer;
10pub mod error;
11pub mod fields;
12pub mod ints;
13pub mod lut;
14pub mod lut_data;
15pub mod manip;
16pub mod misc;
17pub mod notes;
18pub mod prelude;
19pub mod printing;
20pub mod readers;
21pub mod refconverters;
22pub mod references;
23pub mod sort;
24pub mod writers;
25
26// Re-export commonly used items at crate root for convenience
27pub use error::BseError;
28pub use prelude::*;
29
30#[cfg(feature = "remote")]
31pub mod client;