[package]
edition = "2024"
name = "functora"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Missing pieces of the Rust standard library."
documentation = "https://docs.rs/functora"
readme = "README.md"
keywords = [
"rust-patterns",
"prelude",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/functora/functora.github.io/tree/master/rust/functora"
[lib]
name = "functora"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
expect_used = "warn"
ignored_unit_patterns = "warn"
let_underscore_must_use = "warn"
map_unwrap_or = "warn"
must_use_unit = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.semicolon_if_nothing_returned]
level = "allow"
priority = 1
[lints.clippy.similar_names]
level = "allow"
priority = 1
[lints.clippy.too_many_lines]
level = "allow"
priority = 1
[lints.clippy.wildcard_imports]
level = "allow"
priority = 1
[lints.rust]
unused_results = "warn"