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 2275/week @ 2024-12-02 1292/week @ 2024-12-09 1403/week @ 2024-12-16 216/week @ 2024-12-23 294/week @ 2024-12-30 585/week @ 2025-01-06 533/week @ 2025-01-13 722/week @ 2025-01-20 557/week @ 2025-01-27 1127/week @ 2025-02-03 919/week @ 2025-02-10 1149/week @ 2025-02-17 1130/week @ 2025-02-24 1370/week @ 2025-03-03 1834/week @ 2025-03-10 871/week @ 2025-03-17

5,236 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

~29–45MB
~767K SLoC