|
1 |
| -cabal-version: 2.2 |
2 |
| -name: base62 |
3 |
| -version: 0.1.1.0 |
4 |
| -synopsis: Base62 encoding and decoding |
5 |
| -description: |
6 |
| - Encode and decode using the base62 encoding scheme. |
7 |
| -homepage: https://github.com/byteverse/base62 |
8 |
| -bug-reports: https://github.com/byteverse/base62/issues |
9 |
| -license: BSD-3-Clause |
10 |
| -license-file: LICENSE |
11 |
| -author: Andrew Martin |
12 |
| -maintainer: andrew.thaddeus@gmail.com |
13 |
| -copyright: 2019 Andrew Martin |
14 |
| -category: Data |
15 |
| -extra-source-files: CHANGELOG.md |
| 1 | +cabal-version: 2.2 |
| 2 | +name: base62 |
| 3 | +version: 0.1.1.1 |
| 4 | +synopsis: Base62 encoding and decoding |
| 5 | +description: Encode and decode using the base62 encoding scheme. |
| 6 | +homepage: https://github.com/byteverse/base62 |
| 7 | +bug-reports: https://github.com/byteverse/base62/issues |
| 8 | +license: BSD-3-Clause |
| 9 | +license-file: LICENSE |
| 10 | +author: Andrew Martin |
| 11 | +maintainer: amartin@layer3com.com |
| 12 | +copyright: 2019 Andrew Martin |
| 13 | +category: Data |
| 14 | +extra-doc-files: CHANGELOG.md |
16 | 15 |
|
17 | 16 | library
|
18 |
| - exposed-modules: |
19 |
| - Data.Word.Base62 |
| 17 | + exposed-modules: Data.Word.Base62 |
20 | 18 | build-depends:
|
21 |
| - , base >=4.17 && <5 |
22 |
| - , bytebuild >=0.3.4 && <0.4 |
23 |
| - , byteslice >=0.2 && <0.3 |
24 |
| - , bytestring >=0.11.4 |
25 |
| - , natural-arithmetic >=0.1 && <0.2 |
26 |
| - , primitive >=0.7 && <0.10 |
27 |
| - , text >=2.0.2 |
28 |
| - , text-short >=0.1.5 |
29 |
| - , wide-word >=0.1.0.8 && <0.2 |
30 |
| - hs-source-dirs: src |
| 19 | + , base >=4.17 && <5 |
| 20 | + , bytebuild >=0.3.4 && <0.4 |
| 21 | + , byteslice >=0.2 && <0.3 |
| 22 | + , bytestring >=0.11.4 && <0.12 |
| 23 | + , natural-arithmetic >=0.1 && <0.2 |
| 24 | + , primitive >=0.7 && <0.10 |
| 25 | + , text >=2.0.2 && <2.1 |
| 26 | + , text-short >=0.1.5 && <0.2 |
| 27 | + , wide-word >=0.1.0.8 && <0.2 |
| 28 | + |
| 29 | + hs-source-dirs: src |
31 | 30 | default-language: Haskell2010
|
32 |
| - ghc-options: -Wall -O2 |
| 31 | + ghc-options: -Wall -O2 |
33 | 32 |
|
34 | 33 | test-suite test
|
35 | 34 | default-language: Haskell2010
|
36 |
| - type: exitcode-stdio-1.0 |
37 |
| - hs-source-dirs: test |
38 |
| - main-is: Main.hs |
| 35 | + type: exitcode-stdio-1.0 |
| 36 | + hs-source-dirs: test |
| 37 | + main-is: Main.hs |
39 | 38 | build-depends:
|
40 |
| - , base >=4.12.0.0 && <5 |
| 39 | + , base >=4.12.0.0 && <5 |
41 | 40 | , base62
|
42 |
| - , tasty |
43 |
| - , tasty-quickcheck |
44 |
| - , tasty-hunit |
45 | 41 | , byteslice
|
46 | 42 | , primitive
|
| 43 | + , tasty |
| 44 | + , tasty-hunit |
| 45 | + , tasty-quickcheck |
47 | 46 | , wide-word
|
48 | 47 |
|
49 |
| -test-suite doctest |
50 |
| - type: exitcode-stdio-1.0 |
51 |
| - hs-source-dirs: test |
52 |
| - main-is: Doctest.hs |
53 |
| - build-depends: |
54 |
| - , base |
55 |
| - , doctest >= 0.10 |
56 |
| - , base62 |
57 |
| - , wide-word |
58 |
| - default-language: Haskell2010 |
| 48 | +source-repository head |
| 49 | + type: git |
| 50 | + location: git://github.com/byteverse/base62.git |
0 commit comments