[package]
edition = "2021"
rust-version = "1.56"
name = "okerrr"
version = "0.0.0"
authors = ["Adam Williams"]
build = false
exclude = [
"node_modules/",
"package*.json",
"commitlint.config.cjs",
"cliff.toml",
"scripts/",
".githooks/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "macros for concise Result and Option handling with caller-level control flow"
readme = "README.md"
keywords = [
"macros",
"error-handling",
"pattern-matching",
"control-flow",
"result",
]
categories = [
"rust-patterns",
"no-std",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/awill1988/okerrr"
[features]
default = []
[lib]
name = "okerrr"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"