-
Notifications
You must be signed in to change notification settings - Fork 0
/
naperian-functors.cabal
53 lines (49 loc) · 1.63 KB
/
naperian-functors.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
name: naperian-functors
version: 0.1.0.0
synopsis: Naperian containers
description:
A library for containers of statically known shape and size.
.
Based on
/Gibbons, J. (2017, April). APLicative programming with Naperian functors. In European Symposium on Programming (pp. 556-583). Springer, Berlin, Heidelberg./
<https://www.cs.ox.ac.uk/publications/publication10857-abstract.html>.
homepage: https://github.com/NickHu/naperian-functors#readme
license: BSD3
license-file: LICENSE
author: Nick Hu
maintainer: [email protected]
copyright: © Nick Hu 2017
category: Data, Data Structures, Functors
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
flag accelerate
description: Enable accelerate integration
default: False
flag mononaperian
description: Monotraversable Naperian functors
default: False
library
hs-source-dirs: src
exposed-modules:
Data.Naperian
Data.Naperian.Vector
Data.Naperian.Pair
Data.Naperian.Conversions
build-depends: base >= 4.7 && < 5
, ghc-prim
, vector
, split
, template-haskell
default-language: Haskell2010
if flag(accelerate)
build-depends: accelerate
exposed-modules: Data.Naperian.Accelerate
if flag(mononaperian)
build-depends: mono-traversable
exposed-modules:
Data.MonoNaperian
Data.Naperian.Vector.Unboxed
source-repository head
type: git
location: https://github.com/NickHu/naperian-functors