vergen 9.0.2

Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the 'env!' macro
Documentation
[package]
authors = ["Jason Ozias <jason.g.ozias@gmail.com>"]
categories = ["development-tools", "development-tools::build-utils"]
description = "Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the 'env!' macro"
documentation = "https://docs.rs/vergen"
edition = "2021"
homepage = "https://github.com/rustyhorde/vergen"
keywords = ["cargo", "instructions", "build", "tool"]
license = "MIT OR Apache-2.0"
rust-version = "1.75.0"
name = "vergen"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "9.0.2"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
name = "default"
always_deny = ["emit_and_set", "unstable"]

[[package.metadata.cargo-matrix.channel]]
name = "nightly"
always_deny = ["emit_and_set"]
always_include = ["unstable"]

[features]
default = []
build = ["time", "vergen-lib/build"]
cargo = ["cargo_metadata", "regex", "vergen-lib/cargo"]
rustc = ["rustc_version", "vergen-lib/rustc"]
si = ["sysinfo", "vergen-lib/si"]
unstable = ["vergen-lib/unstable"]
emit_and_set = ["vergen-lib/emit_and_set"]

[dependencies]
anyhow = "1.0.93"
cargo_metadata = { version = "0.19.0", optional = true }
derive_builder = "0.20.2"
regex = { version = "1.11.1", optional = true }
rustc_version = { version = "0.4.1", optional = true }
sysinfo = { version = "0.32.1", optional = true }
time = { version = "0.3.36", features = [
    "formatting",
    "local-offset",
    "parsing",
], optional = true }
vergen-lib = { version = "0.1.5", path = "../vergen-lib" }

[build-dependencies]
rustversion = "1.0.18"

[dev-dependencies]
lazy_static = "1.5.0"
regex = "1.11.1"
test_util = { path = "../test_util", features = ["unstable"] }
serial_test = "3.2.0"
temp-env = "0.3.6"

[package.metadata.docs.rs]
features = ["build", "cargo", "emit_and_set", "rustc", "si"]
rustdoc-args = ["--cfg", "docsrs"]