[package]
edition = "2024"
name = "raskell"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Haskell-style functional programming for Rust"
readme = "README.md"
keywords = [
"monad",
"do-notation",
"haskell",
"functional",
"macro",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/bytematebot/raskell"
[lib]
name = "raskell"
path = "src/lib.rs"
[[example]]
name = "async_basic"
path = "examples/async_basic.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "async_hdo"
path = "tests/async_hdo.rs"
[[test]]
name = "features"
path = "tests/features.rs"
[[test]]
name = "hdo"
path = "tests/hdo.rs"
[[test]]
name = "semantics"
path = "tests/semantics.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.raskell-macros]
version = "0.1.0"
[dev-dependencies.pollster]
version = "1"
[dev-dependencies.trybuild]
version = "1"