[package]
edition = "2021"
name = "buildid"
version = "1.0.5"
build = false
include = [
"/src/*.rs",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Examine the currently running executable to get its build-id or LC_UUID"
documentation = "https://docs.rs/buildid"
readme = "README.md"
keywords = [
"no_std",
"build-id",
]
categories = [
"no-std",
"os",
]
license = "MPL-2.0"
repository = "https://github.com/jmesmon/buildid"
[features]
buildid-custom-inject = []
buildid-section-inject = []
buildid-symbol-start-end = []
[lib]
name = "buildid"
path = "src/lib.rs"
[dependencies.buildid-linker-symbols]
version = "1.0"
optional = true
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.log]
version = "0.4"
default-features = false
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.tracing]
version = "0.1"
features = ["log"]
[target.'cfg(all(unix, not(target_vendor = "apple")))'.dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"libloaderapi",
"winnt",
"dbghelp",
]