revive-solc-json-interface 1.1.0

Rust bindings for the solc standard JSON and combined JSON interface
Documentation
//! The `solc --combined-json` contract.

use std::collections::BTreeMap;

use serde::Deserialize;
use serde::Serialize;

/// The contract.
#[derive(Debug, Default, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct Contract {
    /// The `solc` hashes output.
    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
    pub hashes: BTreeMap<String, String>,
    /// The `solc` ABI output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub abi: serde_json::Value,
    /// The `solc` metadata output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<String>,
    /// The `solc` developer documentation output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub devdoc: serde_json::Value,
    /// The `solc` user documentation output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub userdoc: serde_json::Value,
    /// The `solc` storage layout output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub storage_layout: serde_json::Value,
    /// The `solc` AST output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub ast: serde_json::Value,
    /// The `solc` assembly output.
    #[serde(default, skip_serializing_if = "serde_json::Value::is_null")]
    pub asm: serde_json::Value,

    /// LLVM-generated assembly.
    #[cfg(feature = "resolc")]
    #[serde(default, skip_serializing_if = "Option::is_none", skip_deserializing)]
    pub assembly: Option<String>,
    /// The `solc` hexadecimal binary output.
    #[serde(default, skip_serializing_if = "Option::is_none", skip_deserializing)]
    pub bin: Option<String>,
    /// The `solc` hexadecimal binary runtime part output.
    #[serde(default, skip_serializing_if = "Option::is_none", skip_deserializing)]
    pub bin_runtime: Option<String>,

    /// The unlinked factory dependencies.
    #[cfg(feature = "resolc")]
    #[serde(default, skip_deserializing)]
    pub factory_deps_unlinked: std::collections::BTreeSet<String>,
    /// The factory dependencies.
    #[cfg(feature = "resolc")]
    #[serde(default, skip_deserializing)]
    pub factory_deps: BTreeMap<String, String>,
    /// The missing libraries.
    #[cfg(feature = "resolc")]
    #[serde(default, skip_deserializing)]
    pub missing_libraries: std::collections::BTreeSet<String>,
    /// The binary object format.
    #[cfg(feature = "resolc")]
    #[serde(default, skip_deserializing)]
    pub object_format: Option<revive_common::ObjectFormat>,
}