1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Global constants, such as compiler version used, algorithms, compression and filters supported and others

pub const COMPILATION_DATE: &str = "-";
pub const COMPILATION_TIME: &str = "-";
pub const VERSION: &str = "x.x.x";
pub const ALGORITHMS: [&str; 0] = [];
pub const COMPILER: &str = "rustc";
pub const COMPILER_VERSION: &str = "x.x.x";
pub const LIBPNG_VERSION: &str = "image-x.x";
pub const FEATURES: [&str; 1] = ["cpu"];
pub const PLATFORM_CPU_BITS: &str = "64";
pub const FILTER_TYPES: [image::codecs::png::FilterType; 0] = [];
pub const COMPRESSION_TYPES: [image::codecs::png::CompressionType; 0] = [];
pub const DEFAULT_THREAD_POOL_SIZE: usize = 1;
pub const MAX_THREAD_POOL_SIZE: usize = 1;