monadify 0.3.0

A library for functional programming abstractions in Rust, focusing on Monads, Functors, Applicatives, and related concepts.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.66"
name = "monadify"
version = "0.3.0"
authors = ["jarnura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for functional programming abstractions in Rust, focusing on Monads, Functors, Applicatives, and related concepts."
homepage = "https://github.com/jarnura/monadify"
documentation = "https://docs.rs/monadify"
readme = "README.md"
keywords = [
    "functional",
    "fp",
    "monad",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/jarnura/monadify"

[features]
default = []
do-notation = ["dep:monadify-macros"]
legacy = []

[lib]
name = "monadify"
path = "src/lib.rs"

[[bin]]
name = "monadify"
path = "src/main.rs"

[[example]]
name = "except_config_loader"
path = "examples/except_config_loader.rs"
required-features = ["do-notation"]

[[example]]
name = "except_form_validation"
path = "examples/except_form_validation.rs"
required-features = ["do-notation"]

[[example]]
name = "except_order_pipeline"
path = "examples/except_order_pipeline.rs"
required-features = ["do-notation"]

[[example]]
name = "except_safe_calculator"
path = "examples/except_safe_calculator.rs"
required-features = ["do-notation"]

[[example]]
name = "interpreter_full_stack"
path = "examples/interpreter_full_stack.rs"
required-features = ["do-notation"]

[[example]]
name = "list_comprehension"
path = "examples/list_comprehension.rs"
required-features = ["do-notation"]

[[example]]
name = "reader_config"
path = "examples/reader_config.rs"
required-features = ["do-notation"]

[[example]]
name = "state_bank_account"
path = "examples/state_bank_account.rs"
required-features = ["do-notation"]

[[example]]
name = "state_rng_lcg"
path = "examples/state_rng_lcg.rs"
required-features = ["do-notation"]

[[example]]
name = "state_stack_machine"
path = "examples/state_stack_machine.rs"
required-features = ["do-notation"]

[[example]]
name = "state_unique_id"
path = "examples/state_unique_id.rs"
required-features = ["do-notation"]

[[example]]
name = "validation"
path = "examples/validation.rs"
required-features = ["do-notation"]

[[example]]
name = "writer_audit_log"
path = "examples/writer_audit_log.rs"
required-features = ["do-notation"]

[[example]]
name = "writer_cost_monoid"
path = "examples/writer_cost_monoid.rs"
required-features = ["do-notation"]

[[example]]
name = "writer_eval_trace"
path = "examples/writer_eval_trace.rs"
required-features = ["do-notation"]

[[example]]
name = "writer_listen_censor"
path = "examples/writer_listen_censor.rs"
required-features = ["do-notation"]

[[test]]
name = "kind_integration"
path = "tests/kind_integration.rs"

[[test]]
name = "legacy_integration"
path = "tests/legacy_integration.rs"

[[test]]
name = "profunctor"
path = "tests/profunctor.rs"

[[bench]]
name = "compare"
path = "benches/compare.rs"
harness = false

[dependencies.monadify-macros]
version = "0.1.1"
optional = true

[dev-dependencies.criterion]
version = "0.4.0"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "=1.4.0"