32 releases (20 stable)

5.0.3 Jan 24, 2025
5.0.2 Dec 17, 2024
5.0.1 Nov 28, 2024
4.1.3 Nov 20, 2024
2.0.0-beta.1 Dec 7, 2022

#6 in #edsl

Download history 287/week @ 2024-12-31 628/week @ 2025-01-07 540/week @ 2025-01-14 783/week @ 2025-01-21 642/week @ 2025-01-28 1126/week @ 2025-02-04 960/week @ 2025-02-11 1162/week @ 2025-02-18 1103/week @ 2025-02-25 1376/week @ 2025-03-04 1789/week @ 2025-03-11 977/week @ 2025-03-18 1783/week @ 2025-03-25 978/week @ 2025-04-01 903/week @ 2025-04-08 502/week @ 2025-04-15

4,428 downloads per month
Used in 22 crates (10 directly)

Apache-2.0

255KB
5.5K SLoC

contract-build

A crate for building ink! smart contracts. Used by cargo-contract.

Usage

use contract_build::{
    ManifestPath,
    Verbosity,
    BuildArtifacts,
    BuildMode,
    Features,
    Network,
    OptimizationPasses,
    OutputType,
    UnstableFlags,
    Target,
    ImageVariant,
};

let manifest_path = ManifestPath::new("my-contract/Cargo.toml").unwrap();

let args = contract_build::ExecuteArgs {
    manifest_path,
    verbosity: Verbosity::Default,
    build_mode: BuildMode::Release,
    features: Features::default(),
    network: Network::Online,
    build_artifact: BuildArtifacts::All,
    unstable_flags: UnstableFlags::default(),
    optimization_passes: Some(OptimizationPasses::default()),
    keep_debug_symbols: false,
    extra_lints: false,
    output_type: OutputType::Json,
    skip_wasm_validation: false,
    target: Target::Wasm,
    max_memory_pages: 16,
    image: ImageVariant::Default,
};

contract_build::execute(args);

Dependencies

~30–45MB
~767K SLoC