[package]
edition = "2021"
rust-version = "1.81"
name = "other-error"
version = "0.1.0"
authors = ["Darius Clark"]
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small wrapper for sharing or combining errors"
readme = "README.md"
keywords = [
"error",
"error-handling",
]
categories = [
"rust-patterns",
"no-std::no-alloc",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/dariusc93/other-error"
[features]
alloc = []
default = ["std"]
std = [
"either/std",
"alloc",
]
[lib]
name = "other_error"
path = "src/lib.rs"
[dependencies.either]
version = "1"
default-features = false