-
Notifications
You must be signed in to change notification settings - Fork 5
/
tardis.cabal
52 lines (45 loc) · 1.58 KB
/
tardis.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: tardis
version: 0.5.0
synopsis: Bidirectional state monad transformer
homepage: https://github.com/DanBurton/tardis
bug-reports: https://github.com/DanBurton/tardis/issues
license: BSD3
license-file: LICENSE
author: Dan Burton
maintainer: [email protected]
category: Control
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 9.8.1, GHC == 9.6.3, GHC == 9.4.8
extra-source-files: README.md, ChangeLog.md
description:
A Tardis is a combination of both a forwards and a backwards
state transformer, providing two state values that \"travel\"
in opposite directions.
.
A detailed description of what a Tardis is and how to use it
can be found in the documentation for Control.Monad.Tardis.
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Control.Monad.Tardis
, Control.Monad.Tardis.Class
, Control.Monad.Trans.Tardis
build-depends: base >= 4.8 && < 5
, mtl==2.*
, mmorph==1.*
test-suite tardis-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, tardis
other-modules: Example
source-repository head
type: git
location: git://github.com/DanBurton/tardis.git
source-repository this
type: git
location: git://github.com/DanBurton/tardis.git
tag: tardis-0.4.1.0