skia-bindings 0.99.0

Skia Bindings for Rust
Documentation
use crate::build_support::cargo;

/// Returns `true` if the download of prebuilt binaries should be forced.
///
/// This can be used to test and download prebuilt binaries from within a repository build.
/// If this environment variable is not set, binaries are downloaded from crate builds only.
pub fn force_skia_binaries_download() -> bool {
    cargo::env_var("FORCE_SKIA_BINARIES_DOWNLOAD").is_some()
}

/// The URL template to download the Skia binaries from.
///
/// `{tag}` will be replaced by the Tag (usually the released skia-binding's crate's version).
/// `{key}` will be replaced by the Key (a combination of the repository hash, target, and features).
///
/// `file://` URLs are supported for local testing.
pub fn skia_binaries_url() -> Option<String> {
    cargo::env_var("SKIA_BINARIES_URL")
}

/// The default URL template to download the binaries from.
pub fn skia_binaries_url_default() -> String {
    "https://github.com/rust-skia/skia-binaries/releases/download/{tag}/skia-binaries-{key}.tar.gz"
        .into()
}

/// Force to build Skia, even if there is a binary available.
pub fn force_skia_build() -> bool {
    cargo::env_var("FORCE_SKIA_BUILD").is_some()
}