-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
56 lines (51 loc) · 1.34 KB
/
package.yaml
File metadata and controls
56 lines (51 loc) · 1.34 KB
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
name: hasql-class
version: 0.1.0.0
synopsis: Encodable and Decodable classes for hasql
category: Hasql, Database, PostgreSQL
description: Please see README.md
homepage: http://github.com/turingjump/hasql-class#readme
license: BSD3
license-file: LICENSE
author: Julian K. Arni
maintainer: jkarni@gmail.com
copyright: (c) Julian K. Arni
github: turingjump/hasql-class
tested-with: GHC == 7.10.3
ghc-options: -Wall
extra-source-files: README.md
dependencies:
- base >= 4.7 && < 4.11
- text
- bytestring
- vector
- time >= 1.4 && < 1.9
- data-default-class > 0.0 && < 0.2
- contravariant == 1.4.*
- hasql >= 0.19.11 && < 1.2
- generics-eot == 0.2.*
default-extensions:
- AutoDeriveTypeable
- DataKinds
- DefaultSignatures
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- FlexibleContexts
- FlexibleInstances
- OverloadedStrings
- ScopedTypeVariables
library:
source-dirs: src
other-modules: []
tests:
spec:
source-dirs: test
main: Spec.hs
dependencies:
- hasql-class
- hspec > 2 && < 3
- string-qq == 0.0.*
- QuickCheck >= 2.8 && < 2.12
- process > 1.2 && < 2
- quickcheck-instances == 0.3.*