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

#779 in Magic Beans

Download history 532/week @ 2024-10-11 539/week @ 2024-10-18 636/week @ 2024-10-25 2683/week @ 2024-11-01 2010/week @ 2024-11-08 1723/week @ 2024-11-15 2213/week @ 2024-11-22 2634/week @ 2024-11-29 1284/week @ 2024-12-06 1533/week @ 2024-12-13 299/week @ 2024-12-20 227/week @ 2024-12-27 536/week @ 2025-01-03 628/week @ 2025-01-10 470/week @ 2025-01-17 657/week @ 2025-01-24

2,316 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

~27–42MB
~708K SLoC