-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
69 lines (61 loc) · 1.57 KB
/
package.yaml
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
name: generic-persistence
version: 0.7.0.1
github: "thma/generic-persistence"
license: BSD3
author: "Thomas Mahler"
maintainer: "thma@apache.org"
copyright: "2023,2024 Thomas Mahler"
category: Database
synopsis: Database persistence using generics
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/thma/generic-persistence#readme>
language: GHC2021 # See https://ghc-proposals.readthedocs.io/en/latest/proposals/0380-ghc2021.html
tested-with: GHC==9.2, GHC==9.4, GHC==9.6, GHC==9.8, GHC==9.10, GHC==9.12
default-extensions:
- DuplicateRecordFields
- DeriveAnyClass
- DerivingStrategies
- OverloadedRecordDot
- TemplateHaskell
- QuasiQuotes
- LambdaCase
dependencies:
- base >= 4.7 && < 5
- convertible
- HDBC
- generic-deriving
- resource-pool
- raw-strings-qq
- template-haskell
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
tests:
generic-persistence-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- generic-persistence
- hspec
- hspec-discover
- QuickCheck
- HDBC-sqlite3 #>= 2.3.3.1
- HDBC-postgresql #>= 2.5.0.1
- text
verbatim:
build-tool-depends:
hspec-discover:hspec-discover == 2.*