1//! The `solar` CLI: a Solidity compiler. 2 3use solar_cli::utils; 4 5#[global_allocator] 6static ALLOC: utils::Allocator = utils::new_allocator(); 7 8pub use solar_cli::main;