-
Notifications
You must be signed in to change notification settings - Fork 6
/
string-conversions.cabal
62 lines (57 loc) · 1.66 KB
/
string-conversions.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack
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.
category: Data
homepage: https://github.com/soenkehahn/string-conversions#readme
bug-reports: https://github.com/soenkehahn/string-conversions/issues
author: Sönke Hahn
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
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
source-repository head
type: git
location: https://github.com/soenkehahn/string-conversions
library
exposed-modules:
Data.String.Conversions
Data.String.Conversions.Monomorphic
other-modules:
Paths_string_conversions
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base ==4.*
, bytestring >=0.9
, text >=0.11
, utf8-string >=0.3
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Data.String.ConversionsSpec
Data.String.Conversions
Data.String.Conversions.Monomorphic
Paths_string_conversions
hs-source-dirs:
test
src
build-depends:
QuickCheck
, base ==4.*
, bytestring >=0.9
, deepseq
, hspec
, quickcheck-instances
, text >=0.11
, utf8-string >=0.3
default-language: Haskell2010