forked from matt-noonan/justified-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justified-containers.cabal
48 lines (42 loc) · 1.61 KB
/
justified-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
name: justified-containers
version: 0.3.1.0
synopsis: Keyed container types with type-checked proofs of key presence.
description: This package contains wrappers around standard container types,
that provide guarantees about the presence of keys within the
container.
homepage: https://github.com/matt-noonan/justified-containers
license: BSD2
license-file: LICENSE
author: Matt Noonan
maintainer: matt.noonan@gmail.com
copyright: 2017 Matt Noonan
category: Data Structures
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/matt-noonan/justified-containers
library
hs-source-dirs: src
exposed-modules: Data.Map.Justified
, Data.Map.Justified.Tutorial
ghc-options: -O2 -Wall
build-depends: base >= 4.7 && < 5
, containers
, roles >= 0.2
default-language: Haskell2010
test-suite justified-containers-spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall -Wno-deferred-type-errors
build-depends: base >= 4.7 && < 5
, hspec
, justified-containers
, containers
, QuickCheck
, should-not-typecheck
, ghc-prim
other-modules: Data.Map.JustifiedSpec
default-language: Haskell2010