solar-compiler 0.2.0

Blazingly fast Solidity compiler
Documentation
1
2
3
4
5
6
7
8
9
10
//! The main entry point for the Solar compiler.

#![allow(unused_crate_dependencies)]

use solar_cli::utils;

#[global_allocator]
static ALLOC: utils::Allocator = utils::new_allocator();

pub use solar_cli::main;