-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbyte-count-reader.cabal
More file actions
57 lines (54 loc) · 1.65 KB
/
byte-count-reader.cabal
File metadata and controls
57 lines (54 loc) · 1.65 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
cabal-version: 2.2
name: byte-count-reader
version: 0.10.1.12
license: GPL-3.0-only
license-file: LICENSE
copyright: 2021 Daniel Rolls
maintainer: daniel.rolls.27@googlemail.com
author: Daniel Rolls
homepage: https://github.com/danielrolls/byte-count-reader#readme
bug-reports: https://github.com/danielrolls/byte-count-reader/issues
synopsis: Read strings describing a number of bytes like 2Kb and 0.5 MiB
description:
Please see the README on GitHub at <https://github.com/danielrolls/byte-count-reader#readme>
category: Text
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
tested-with: GHC == 8.10.7
source-repository head
type: git
location: https://github.com/danielrolls/byte-count-reader
library
exposed-modules:
Data.ByteCountReader
Paths_byte_count_reader
hs-source-dirs: src
autogen-modules:
Paths_byte_count_reader
default-language: Haskell2010
default-extensions: OverloadedStrings
build-depends:
base >=4.7 && <5,
extra >=1.6.21 && <1.9,
parsec >=3.1.14.0 && <3.2,
parsec-numbers >=0.1.0 && <0.2,
text >=1.2.3.2 && <2.2
test-suite haskelltest-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
other-modules:
Paths_byte_count_reader
default-language: Haskell2010
default-extensions: OverloadedStrings
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5,
byte-count-reader >=0,
extra >=1.6.21 && <1.9,
hspec >=2.7.1 && <2.12,
parsec >=3.1.14.0 && <3.2,
parsec-numbers >=0.1.0 && <0.2,
text >=1.2.3.2 && <2.2