[fix] Update package description in .cabal.

This commit is contained in:
Yamada Ryo 2024-11-03 19:09:34 +09:00
parent b33822bddf
commit cb1e5f970c
No known key found for this signature in database
GPG Key ID: AAE3C7A542B02DBF
2 changed files with 4 additions and 10 deletions

View File

@ -3,7 +3,7 @@ name: heftia-effects
version: 0.5.0.0
-- A short (one-line) description of the package.
synopsis: higher-order effects done right
synopsis: higher-order algebraic effects done right
-- A longer description of the package.
description:

View File

@ -3,21 +3,15 @@ name: heftia
version: 0.4.0.0
-- A short (one-line) description of the package.
synopsis: higher-order effects done right
synopsis: higher-order algebraic effects done right
-- A longer description of the package.
description:
Heftia is an extensible effects library that generalizes "Algebraic Effects and Handlers" to higher-order effects, providing users with maximum flexibility and delivering standard and reasonable speed.
In its generalization, the focus is on ensuring predictable results based on simple, consistent semantics, while preserving soundness.
.
Please refer to the [Haddock documentation](https://hackage.haskell.org/package/heftia-0.4.0.0/docs/Control-Monad-Hefty.html) for usage and semantics.
For information on performance, please refer to [performance.md](https://github.com/sayo-hs/heftia/blob/v0.4.0/benchmark/performance.md).
.
The library allows the following effects with well-defined semantics:
.
* Coroutines
* Non-deterministic computations
* `MonadUnliftIO`
Please refer to the [Haddock documentation](https://hackage.haskell.org/package/heftia-0.5.0.0/docs/Control-Monad-Hefty.html) for usage and semantics.
For information on performance, please refer to [performance.md](https://github.com/sayo-hs/heftia/blob/v0.5.0/benchmark/performance.md).
.
This library is inspired by the paper:
.