[package]
edition = "2024"
name = "errcode"
version = "0.1.0-alpha.1"
authors = ["Alissa Rao <aura@aura.moe>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for simplified error handling."
documentation = "https://docs.rs/errcode/"
readme = "README.md"
keywords = [
"error",
"error-handling",
]
categories = [
"rust-patterns",
"no-std",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/Lymia/errcode"
resolver = "2"
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
branch = "master"
repository = "Lymia/errcode"
[features]
derive = []
repr_full = []
repr_unboxed = []
repr_unboxed_location = []
[lib]
name = "errcode"
path = "src/lib.rs"
[[example]]
name = "early_test"
path = "examples/early_test.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "err_code"
path = "tests/err_code.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"
[dependencies.errcode_derive]
version = "^0.1.1"