[package]
edition = "2021"
name = "cirious_codex_result"
version = "0.2.0"
authors = ["Cirious Studio <cirious.studio@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Robust result and error handling framework for the Cirious Codex ecosystem."
homepage = "https://github.com/cirious-studio/cirious_codex_result"
documentation = "https://docs.rs/cirious_codex_result"
readme = "README.md"
keywords = [
"error-handling",
"result",
"diagnostic",
"codex",
"cirious",
]
categories = [
"rust-patterns",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cirious-studio/cirious_codex_result"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
serde = [
"dep:serde",
"dep:serde_json",
]
[lib]
name = "cirious_codex_result"
path = "src/lib.rs"
[[example]]
name = "advanced_chaining"
path = "examples/advanced_chaining.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "error_conversion"
path = "examples/error_conversion.rs"
[[example]]
name = "manual_propagation"
path = "examples/manual_propagation.rs"
[[example]]
name = "validation_flow"
path = "examples/validation_flow.rs"
[[test]]
name = "conversion_test"
path = "tests/conversion_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "ok_macro_test"
path = "tests/ok_macro_test.rs"
[[test]]
name = "propagation_test"
path = "tests/propagation_test.rs"
[[test]]
name = "validation_test"
path = "tests/validation_test.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[lints.clippy]
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "warn"