mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-27 11:38:01 +00:00
c52a8d0f20
Signed-off-by: xermicus <cyrill@parity.io>
49 lines
1.2 KiB
Rust
49 lines
1.2 KiB
Rust
//!
|
|
//! The file extensions.
|
|
//!
|
|
|
|
/// The manifest file extension.
|
|
pub static EXTENSION_MANIFEST: &str = "toml";
|
|
|
|
/// The JSON data file extension.
|
|
pub static EXTENSION_JSON: &str = "json";
|
|
|
|
/// The ABI file extension.
|
|
pub static EXTENSION_ABI: &str = "abi";
|
|
|
|
/// The Yul IR file extension.
|
|
pub static EXTENSION_YUL: &str = "yul";
|
|
|
|
/// The EVM legacy assembly IR file extension.
|
|
pub static EXTENSION_EVMLA: &str = "evmla";
|
|
|
|
/// The Ethereal IR file extension.
|
|
pub static EXTENSION_ETHIR: &str = "ethir";
|
|
|
|
/// The EVM file extension.
|
|
pub static EXTENSION_EVM: &str = "evm";
|
|
|
|
/// The EVM bytecode file extension.
|
|
pub static EXTENSION_EVM_BINARY: &str = "bin";
|
|
|
|
/// The Solidity file extension.
|
|
pub static EXTENSION_SOLIDITY: &str = "sol";
|
|
|
|
/// The LLL IR file extension.
|
|
pub static EXTENSION_LLL: &str = "lll";
|
|
|
|
/// The Vyper file extension.
|
|
pub static EXTENSION_VYPER: &str = "vy";
|
|
|
|
/// The LLVM source code file extension.
|
|
pub static EXTENSION_LLVM_SOURCE: &str = "ll";
|
|
|
|
/// The LLVM bitcode file extension.
|
|
pub static EXTENSION_LLVM_BINARY: &str = "bc";
|
|
|
|
/// The EraVM assembly file extension.
|
|
pub static EXTENSION_ERAVM_ASSEMBLY: &str = "zasm";
|
|
|
|
/// The EraVM bytecode file extension.
|
|
pub static EXTENSION_ERAVM_BINARY: &str = "zbin";
|