[package] name = "debuginfod" version = "0.2.0" edition = "2021" rust-version = "1.64" license = "Apache-2.0 OR MIT" homepage = "https://github.com/d-e-s-o/debuginfod" repository = "https://github.com/d-e-s-o/debuginfod.git" readme = "README.md" categories = [ "api-bindings", "caching", "development-tools", "filesystem", ] keywords = [ "debuginfod", "api", "debugging", "dwarf", "tracing", ] description = """ A crate for interacting with debuginfod servers. """ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["fs-cache"] # Enable support for file system based caching. fs-cache = ["dep:dirs", "dep:tempfile"] # Enable support for emitting traces. tracing = ["dep:tracing"] [dependencies] anyhow = "1.0.68" dirs = {version = "5.0", default-features = false, optional = true} reqwest = {version = "0.12.4", features = ["blocking", "gzip"]} tempfile = {version = "3.10.1", default-features = false, optional = true} tracing = {version = "0.1.27", default-features = false, optional = true} [dev-dependencies] blazesym = {version = "=0.2.0-rc.2", default-features = false} # A set of unused dependencies that we require to force correct minimum versions # of transitive dependencies, for cases where our dependencies have incorrect # dependency specifications themselves. # error: cannot find macro `log_enabled` in this scope _log_unused = { package = "log", version = "0.4.6" } # error: pasting "RUST_VERSION_OPENSSL_" and "(" does not give a valid preprocessing token _openssl_unused = {package = "openssl", version = "0.10.35"} # error[E0277]: the trait bound `Version: From<({integer}, {integer}, {integer})>` is not satisfied _rustc_version_unused = { package = "rustc_version", version = "0.2.2" } # https://docs.rs/about/metadata [package.metadata.docs.rs] all-features = true # defines the configuration attribute `docsrs` rustdoc-args = ["--cfg", "docsrs"]