mirror of
https://github.com/haskell-effectful/effectful-contrib.git
synced 2024-11-26 17:27:18 +03:00
59cbe0d8c6
* Initial commit of effectful-typed-process
29 lines
969 B
Markdown
29 lines
969 B
Markdown
# effectful-contrib [![CI-badge][CI-badge]][CI-url]
|
|
|
|
This repository hosts bindings for the [`effectful`][effectful] library by Andrzej Rybczak.
|
|
|
|
* [effectful-cache](./effectful-cache): A `Cache` effect t use the [cache library][cache].
|
|
* [effectful-time](./effectful-time): A `Time` effect to use the [time library][time].
|
|
* [effectful-typed-process](./effectful-typed-process): A `Process` effect based on the [typed-process library][typed-process].
|
|
|
|
## Building and Testing
|
|
|
|
To build the libraries:
|
|
|
|
```
|
|
$ cabal build all
|
|
```
|
|
|
|
To run all the tests:
|
|
|
|
```
|
|
$ cabal test all
|
|
```
|
|
|
|
[effectful]: https://github.com/arybczak/effectful
|
|
[CI-badge]: https://img.shields.io/github/workflow/status/Kleidukos/effectful-contrib/CI?style=flat-square
|
|
[CI-url]: https://github.com/Kleidukos/effectful-contrib/actions
|
|
[cache]: https://hackage.haskell.org/package/cache
|
|
[time]: https://hackage.haskell.org/package/time
|
|
[typed-process]: https://hackage.haskell.org/package/typed-process
|