File: stringprep.cabal

package info (click to toggle)
haskell-stringprep 1.0.0-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124 kB
  • sloc: haskell: 2,480; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,189 bytes parent folder | download | duplicates (5)
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: stringprep
Version: 1.0.0
Description: Implements the "StringPrep" algorithm
Synopsis: Implements the "StringPrep" algorithm
License: BSD3
Author: George Pollard <porges@porg.es>
Maintainer: George Pollard <porges@porg.es>
Build-Type: Simple
Cabal-Version: >=1.8
License-file: LICENSE
Category: data
extra-source-files: Text/*.hs

source-repository head
    type: git
    location: https://github.com/Porges/stringprep-hs.git

source-repository this
    type: git
    location: https://github.com/Porges/stringprep-hs.git
    tag: v1.0.0

Library
 Build-Depends: base          >=3 &&    < 5
              , containers    >=0.2
              , text-icu      >=0.6
              , text          >=0.9
 Exposed-modules: Text.StringPrep
                , Text.StringPrep.Profiles
                , Text.CharRanges
 ghc-options: -O2 -Wall -fno-warn-name-shadowing

test-suite tests
 Build-Depends: base
              , QuickCheck
              , containers
              , text
              , text-icu
              , tasty
              , tasty-quickcheck
              , tasty-th
 type:         exitcode-stdio-1.0
 main-is:     Tests.hs
 Other-modules: Ranges
 hs-source-dirs: tests .