/ bulk.cabal
bulk.cabal
 1  cabal-version: 1.12
 2  
 3  -- This file has been generated from package.yaml by hpack version 0.36.0.
 4  --
 5  -- see: https://github.com/sol/hpack
 6  
 7  name:           bulk
 8  version:        0.1.0.0
 9  synopsis:       BULK library for Haskell
10  description:    BULK library for Haskell
11  homepage:       https://github.com/kephas/bulk-haskell#readme
12  bug-reports:    https://github.com/kephas/bulk-haskell/issues
13  author:         Pierre Thierry
14  maintainer:     pierre@nothos.net
15  copyright:      2017–2021 Pierre Thierry
16  license:        BSD3
17  license-file:   LICENSE
18  build-type:     Simple
19  extra-source-files:
20      README.md
21  
22  source-repository head
23    type: git
24    location: https://github.com/kephas/bulk-haskell
25  
26  library
27    exposed-modules:
28        Data.BULK
29        Data.BULK.Decode
30        Data.BULK.Encode
31    other-modules:
32        Paths_bulk
33    hs-source-dirs:
34        src
35    default-extensions:
36        ImportQualifiedPost
37    build-depends:
38        base >=4.7 && <5
39      , binary
40      , binary-parsers
41      , bits
42      , bytestring
43      , digits
44      , extra
45      , largeword
46    default-language: Haskell2010
47  
48  test-suite bulk-test
49    type: exitcode-stdio-1.0
50    main-is: Spec.hs
51    other-modules:
52        Test.BULK.Decode
53        Test.BULK.Encode
54        Paths_bulk
55    hs-source-dirs:
56        test
57    default-extensions:
58        ImportQualifiedPost
59    ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
60    build-depends:
61        QuickCheck
62      , base >=4.7 && <5
63      , binary
64      , bits
65      , bulk
66      , bytestring
67      , digits
68      , hspec
69      , quickcheck-instances
70      , random
71    default-language: Haskell2010