pconvert-rust 0.4.3

Rust version of P(NG)Convert, a simple PNG conversion tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Constants that define the current build and execution environment.

#[cfg(feature = "readonly")]
pub mod mock;
#[cfg(feature = "readonly")]
pub use self::mock::*;

#[cfg(not(feature = "readonly"))]
pub mod generated;
#[cfg(not(feature = "readonly"))]
pub use self::generated::*;