-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
71 lines (67 loc) · 1.56 KB
/
package.yaml
File metadata and controls
71 lines (67 loc) · 1.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
name: string-conv
version: 0.2.0
synopsis: Standardized conversion between string types
description: >
Avoids the need to remember many different functions for converting string
types. Just use one universal function toS for all monomorphic string
conversions.
license: BSD3
license-file: LICENSE
author: Ozgun Ataman
maintainer: ozgun.ataman@soostone.com
copyright: Soostone Inc, 2012-2015
category: Data, String, Text
homepage: https://github.com/Soostone/string-conv
bug-reports: https://github.com/Soostone/string-conv/issues
build-type: Simple
extra-source-files:
- README.md
- changelog.md
github: Soostone/string-conv
flags:
lib-Werror:
manual: true
default: false
description: >
Turn on -Wall and -Werror. Should always be enabled in development.
when:
- condition: flag(lib-Werror)
then:
ghc-options:
- -Wall
- -Werror
- -fwarn-redundant-constraints
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Widentities
else:
ghc-options:
- -Wall
- -fwarn-redundant-constraints
- -Wincomplete-record-updates
- -Widentities
library:
source-dirs:
- src
dependencies:
- base >= 4.4 && < 5
- bytestring
- text
tests:
tests:
source-dirs:
- test
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base >= 4.4 && < 5
- bytestring
- quickcheck-instances >= 0.3.17
- string-conv
- tasty
- tasty-quickcheck
- text