1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Supported methods of barcode generation.
//! 
//! Each generation option is an optionally-compiled feature, which you must opt-into when
//! compiling.
//!
//! For example:
//!
//! ```toml
//! [dependencies]
//! barcoders = {version = "*", features = ["image"]}
//! ```

#[cfg(feature = "ascii")]
pub mod ascii;

#[cfg(feature = "json")]
pub mod json;

#[cfg(feature = "image")]
pub mod image;

#[cfg(feature = "svg")]
pub mod svg;