-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhiper.cabal
72 lines (67 loc) · 2.26 KB
/
hiper.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
65
66
67
68
69
70
71
72
name: hiper
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/hiper#readme
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: [email protected]
copyright: 2017 Author name here
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Data.Hiper
Data.Hiper.Types
other-modules:
Data.Hiper.Instances
Data.Hiper.Parser
Data.Hiper.Types.Internal
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.8.1 && < 0.10.9
, containers >= 0.5.7 && < 0.6
, directory >= 1.3 && < 1.4
, filepath >= 1.4.1.1 && < 1.5
, fsnotify >= 0.2.1 && < 0.3
, hspec >= 2.4.3
, mtl >= 2.2 && < 2.3
, parsec >= 3.1.11 && < 3.2
, scientific >= 0.3.4.13 && < 0.3.5
, text >= 1.2.2.1 && < 1.3
, unordered-containers >= 0.2.8.0 && < 0.3
, vector >= 0.11 && < 0.13
, yaml >= 0.8.23 && < 0.9
default-language: Haskell2010
ghc-options:
-Wall
-fwarn-tabs
-funbox-strict-fields
source-repository head
type: git
location: https://github.com/loopthrough/hiper
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
build-depends:
base == 4.*
, HUnit >= 1.2.5
, QuickCheck >= 2.5.1
, call-stack
, containers >= 0.5.7 && < 0.6
, directory
, hiper == 0.1.0.0
, hspec >= 2.4.3
, hspec-core == 2.4.3
, hspec-discover == 2.4.3
, hspec-expectations == 0.8.2.*
, hspec-meta >= 2.3.2
, stringbuilder
, text >= 1.2.2.1 && < 1.3
, transformers >= 0.2.2.0
default-language: Haskell2010