-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprimitive-maybe.cabal
52 lines (49 loc) · 1.37 KB
/
primitive-maybe.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
cabal-version: 2.0
name: primitive-maybe
version: 0.1.1
synopsis: Arrays of Maybes
description:
This library provides types for working with arrays of @Maybe@
values. The types in this library can be used as replacements
for @Array (Maybe a)@ and @SmallArray (Maybe a)@ that consume
less memory and have fewer indirections.
homepage: https://github.com/andrewthad/primitive-maybe#readme
bug-reports: https://github.com/andrewthad/primitive-maybe/issues
author: Andrew Martin
maintainer: [email protected]
copyright: 2018 Andrew Martin
license: BSD3
license-file: LICENSE
build-type: Simple
category: Array
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/andrewthad/primitive-maybe
library
exposed-modules:
Data.Primitive.Array.Maybe
Data.Primitive.SmallArray.Maybe
other-modules:
Data.Primitive.Maybe.Internal
hs-source-dirs: src
build-depends:
base >=4.9.1.0 && <5
, primitive >= 0.6.4 && < 0.8
ghc-options: -O2 -Wall
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.9.1.0 && <5
, primitive-maybe
, primitive
, QuickCheck
, tasty
, tasty-quickcheck
, tagged
, quickcheck-classes >= 0.6.0.0
default-language: Haskell2010