[package]
edition = "2024"
name = "memcond"
version = "0.1.0"
build = false
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Assertion memoizer. Safely bring the outcome of an assertion next the code where it is actually useful."
homepage = "https://github.com/igankevich/memcond"
documentation = "https://docs.rs/memcond"
readme = "README.md"
keywords = [
"base32",
"crockford",
"fs",
]
categories = [
"encoding",
"filesystem",
"no-std",
]
license = "MIT"
repository = "https://github.com/igankevich/memcond"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "memcond"
path = "src/lib.rs"
[[example]]
name = "pages"
path = "examples/pages.rs"
[[example]]
name = "yuv420p"
path = "examples/yuv420p.rs"
[[test]]
name = "cell"
path = "tests/cell.rs"
[[test]]
name = "vec"
path = "tests/vec.rs"