-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexed-containers.cabal
52 lines (47 loc) · 1.57 KB
/
indexed-containers.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.4
-- Initial package description 'indexed-containers.cabal' generated by
-- 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: indexed-containers
version: 0.1.0.2
synopsis: Simple, no-frills indexed lists.
description: If the lengths of your lists are known statically, using indexed lists improves type safety with no runtime overhead.
category: Data Structures
homepage: https://github.com/zliu41/indexed-containers
bug-reports: https://github.com/zliu41/indexed-containers/issues
author: Ziyang Liu <[email protected]>
maintainer: Ziyang Liu <[email protected]>
copyright: 2020 Ziyang Liu
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC==8.10.1, GHC==8.8.2, GHC==8.6.5, GHC==8.4.4
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/zliu41/indexed-containers
library
exposed-modules:
Data.NList
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
default-language: Haskell2010
test-suite hspec
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Data.NListSpec
hs-source-dirs:
test/hspec
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, hspec >=2.4.8 && <2.8
, indexed-containers
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover == 2.*