[package]
edition = "2024"
name = "ax-errno"
version = "0.6.2"
authors = ["Yuekai Jia <equation618@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic error code representation."
readme = "README.md"
keywords = [
"arceos",
"errno",
]
categories = [
"no-std",
"os",
]
license = "Apache-2.0"
repository = "https://github.com/rcore-os/tgoskits"
[features]
axtest = ["dep:axtest"]
[lib]
name = "ax_errno"
path = "src/lib.rs"
[dependencies.axtest]
version = "0.5.13"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.strum]
version = "0.27.2"
features = ["derive"]
default-features = false
[build-dependencies.quote]
version = "1.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(axtest)"]