[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-error"
version = "0.2.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
"COVERAGE.md",
"COVERAGE.zh_CN.md",
".circleci/*",
"ci-check.sh",
".llvm-cov.toml",
".cargo-audit.toml.example",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared error handling helpers for Rust applications"
homepage = "https://github.com/qubit-ltd/rs-error"
documentation = "https://docs.rs/qubit-error"
readme = "README.md"
keywords = [
"error",
"result",
"utility",
"qubit",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-error"
[lib]
name = "qubit_error"
path = "src/lib.rs"
test = true
doctest = true
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[dependencies]