-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubzero.cabal
More file actions
62 lines (56 loc) · 2.3 KB
/
subzero.cabal
File metadata and controls
62 lines (56 loc) · 2.3 KB
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
-- SubZero, A haskell library to provide a useful data structure
-- Copyright (C) 2017 Tristan Wibberley
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of version 2 of the GNU General Public License
-- as published by the Free Software Foundation.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along
-- with this program; if not, write to the Free Software Foundation, Inc.,
-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
name: subzero
version: 0.1.0.9
synopsis: Helps when going "seed values" -> alternatives and optional -> answers
description: >
Types to support turning structured collections of seed values
into the same structures with alternatives along with some functions
for regular uses.
Please see README.md for more information
homepage: https://github.com/code5hot/subzero#readme
license: GPL-2
license-file: LICENSE
author: Tristan Wibberley
maintainer: tristan.wibberley@gmail.com
copyright: Copyright: (c) 2017-2017 Tristan Wibberley. All Rights Reserved.
category: Data Structures
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Control.Applicative.SubZero
, Control.Choice
, Control.Applicative.SubZero.Examples
, Control.Zippy
, Data.Map.IMap
build-depends: base >= 4.7 && < 5
, containers
default-language: Haskell2010
test-suite subzero-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, subzero
, hspec
, containers
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/code5hot/subzero