@wireapp/core-crypto
    Preparing search index...

    Type Alias BuildMetadata

    Metadata describing the conditions of the build of this software.

    type BuildMetadata = {
        cargoDebug: string;
        cargoFeatures: string;
        gitBranch: string;
        gitDescribe: string;
        gitDirty: string;
        gitSha: string;
        optLevel: string;
        targetTriple: string;
        timestamp: string;
    }
    Index

    Properties

    cargoDebug: string

    Whether this build was in Debug mode (true) or Release mode (false)

    cargoFeatures: string

    Features enabled for this build

    gitBranch: string

    Git branch

    gitDescribe: string

    Output of git describe

    gitDirty: string

    true when the source code differed from the commit at the most recent git hash

    gitSha: string

    Hash of current git commit

    optLevel: string

    Optimization level

    targetTriple: string

    Build target triple

    timestamp: string

    Build Timestamp