foundry-compilers-artifacts-vyper 0.21.0

Rust bindings for Vyper JSON artifacts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Vyper artifact types.

#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(docsrs, feature(doc_cfg))]

mod settings;
pub use settings::{
    VyperOptimizationLevel, VyperOptimizationMode, VyperSettings, VyperVenomSettings,
};

mod error;
pub use error::VyperCompilationError;

mod input;
pub use input::VyperInput;

mod output;
pub use output::VyperOutput;