[package]
edition = "2024"
name = "error-repr"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generalization of std::io::Error"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chorman0773/error-repr"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
error-track_caller = []
nightly-io_error_more = ["std"]
os-error-wrapper = ["dep:linux-errno"]
std = ["alloc"]
[lib]
name = "error_repr"
path = "src/lib.rs"
[dependencies.cfg-match]
version = "0.2.1"
[target.'cfg(target_os="linux")'.dependencies.linux-errno]
version = "1.1.0"
optional = true
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(target_os, values("lilium"))']