-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.yaml
45 lines (40 loc) · 819 Bytes
/
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
name: string-conversions
version: "0.4.0.1"
synopsis: Simplifies dealing with different types for strings
description: Provides a simple type class for converting values
of different string types
into values of other string types.
license: BSD3
author: Sönke Hahn
maintainer: soenkehahn@gmail.com
category: Data
github: soenkehahn/string-conversions
tested-with:
GHC == 8.0.2,
GHC == 8.2.2,
GHC == 8.4.3,
GHC == 8.6.5,
GHC == 8.8.4,
GHC == 8.10.7,
GHC == 9.0.2,
GHC == 9.2.2
dependencies:
- base == 4.*
- bytestring >= 0.9
- text >= 0.11
- utf8-string >= 0.3
library:
ghc-options: -Wall
source-dirs:
- src
tests:
spec:
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec
- quickcheck-instances
- deepseq
- QuickCheck