solc/
lib.rs

1//! Solidity compiler bindings for Rust.
2//!
3//! This crate provides types and builders for interacting with the Solidity
4//! compiler's Standard JSON interface.
5
6pub use standard_json_input::StandardJsonInput;
7
8pub mod ast;
9pub mod standard_json_input;