pconvert_rust/constants/
mock.rs

1//! Global constants, such as compiler version used, algorithms, compression and filters supported and others
2
3pub const COMPILATION_DATE: &str = "-";
4pub const COMPILATION_TIME: &str = "-";
5pub const VERSION: &str = "x.x.x";
6pub const ALGORITHMS: [&str; 0] = [];
7pub const COMPILER: &str = "rustc";
8pub const COMPILER_VERSION: &str = "x.x.x";
9pub const LIBPNG_VERSION: &str = "image-x.x";
10pub const FEATURES: [&str; 1] = ["cpu"];
11pub const PLATFORM_CPU_BITS: &str = "64";
12pub const FILTER_TYPES: [image::codecs::png::FilterType; 0] = [];
13pub const COMPRESSION_TYPES: [image::codecs::png::CompressionType; 0] = [];
14pub const DEFAULT_THREAD_POOL_SIZE: usize = 1;
15pub const MAX_THREAD_POOL_SIZE: usize = 1;