[package]
edition = "2021"
rust-version = "1.56"
name = "okerrr"
version = "0.1.0"
authors = ["Adam Williams"]
build = false
include = [
"/src/**",
"/tests/**",
"/README.md",
"/LICENSE-*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "programmatic freedom from matching Result<T, E>—okerrr!"
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"