revive-common 1.2.0

Shared constants of the revive compiler
Documentation
1
2
3
4
5
6
7
//! The revive exit code constants.

/// The common application success exit code.
pub const EXIT_CODE_SUCCESS: i32 = 0;

/// The common application failure exit code.
pub const EXIT_CODE_FAILURE: i32 = 1;