function 0.3.0

A set of useful traits for your functional needs
Documentation
[package]
name = "function"
version = "0.3.0"
edition = "2021"
license = "MIT"
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
description = "A set of useful traits for your functional needs"
repository = "https://github.com/hecrj/function"
categories = ["mathematics", "rust-patterns"]
keywords = ["functions", "functional", "currying", "pipeline"]

[dependencies]

[lints]
workspace = true

[workspace.lints.rust]
rust_2018_idioms = { level = "deny", priority = -1 }
missing_debug_implementations = "deny"
missing_docs = "deny"
unsafe_code = "deny"
unused_results = "deny"

[workspace.lints.clippy]
type-complexity = "allow"
semicolon_if_nothing_returned = "deny"
trivially-copy-pass-by-ref = "deny"
default_trait_access = "deny"
match-wildcard-for-single-variants = "deny"
redundant-closure-for-method-calls = "deny"
filter_map_next = "deny"
manual_let_else = "deny"
unused_async = "deny"
from_over_into = "deny"
needless_borrow = "deny"
new_without_default = "deny"
useless_conversion = "deny"

[workspace.lints.rustdoc]
broken_intra_doc_links = "forbid"