-
Notifications
You must be signed in to change notification settings - Fork 0
/
backtracking.cabal
70 lines (67 loc) · 1.78 KB
/
backtracking.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cabal-version: >=1.10
-- Initial package description 'backtracking.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: backtracking
version: 0.1.0
synopsis: A backtracking monad
description: This library provides a backtracking monad following Spivey's paper "Algebras for combinatorial search".
-- bug-reports:
license: BSD3
license-file: LICENSE
author: coord_e, Satoshi Egi
maintainer: Satoshi Egi <egi@egison.org>
-- copyright:
category: Control
build-type: Simple
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules:
Control.Monad.Search
build-depends:
build-depends:
base >=4.8 && <5
, transformers
default-language: Haskell2010
default-extensions:
DataKinds
DefaultSignatures
DerivingStrategies
ExplicitForAll
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
PolyKinds
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeOperators
ghc-options:
-Wall -Wno-type-defaults
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
ghc-options:
-Wall -threaded -rtsopts -with-rtsopts=-N -Wno-type-defaults
default-language: Haskell2010
build-depends:
base
, primes
, backtracking
, tasty
, tasty-hunit
default-extensions:
GADTs
QuasiQuotes
TemplateHaskell
TypeApplications
-- cabal-fmt: expand test
other-modules: Spec
build-tool-depends: tasty-discover:tasty-discover -any