forked from emilypi/nonempty-vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnonempty-vector.cabal
64 lines (56 loc) · 1.46 KB
/
nonempty-vector.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
cabal-version: 1.24
name: nonempty-vector
version: 0.2.1.0
synopsis: Non-empty vectors
description: Performant, non-empty mutable and immutable vectors
homepage: https://github.com/emilypi/nonempty-vector
bug-reports: https://github.com/emilypi/nonempty-vector/issues
license: BSD3
license-file: LICENSE
author: Emily Pillmore
maintainer: [email protected]
copyright: (c) 2019-2020 Emily Pillmore <[email protected]>
category: Data
build-type: Custom
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.0.2
|| ==8.4.3
|| ==8.4.4
|| ==8.6.3
|| ==8.6.5
|| ==8.8.1
|| ==8.10.2
source-repository head
type: git
location: https://github.com/emilypi/nonempty-vector.git
custom-setup
setup-depends:
base >=4.9 && <5
, Cabal
, cabal-doctest
library
exposed-modules:
Data.Vector.NonEmpty
Data.Vector.NonEmpty.Internal
Data.Vector.NonEmpty.Mutable
build-depends:
base >=4.9 && <5
, deepseq
, primitive >=0.6 && <0.8
, vector >=0.12 && <0.13
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends:
base >=4.9 && <5
, doctest
hs-source-dirs: test
ghc-options: -Wall -threaded
x-doctest-options: --fast