/ package.yaml
package.yaml
 1  name:                bulk
 2  version:             0.1.0.0
 3  github:              "kephas/bulk-haskell"
 4  license:             BSD3
 5  author:              "Pierre Thierry"
 6  maintainer:          "pierre@nothos.net"
 7  copyright:           "2017–2021 Pierre Thierry"
 8  
 9  extra-source-files:
10  - README.md
11  
12  # Metadata used when publishing your package
13  synopsis:            BULK library for Haskell
14  # category:            Web
15  
16  # To avoid duplicated efforts in documentation and dealing with the
17  # complications of embedding Haddock markup inside cabal files, it is
18  # common to point users to the README.md file.
19  description:         BULK library for Haskell
20  
21  dependencies:
22  - base >= 4.7 && < 5
23  - bits
24  - bytestring
25  - digits
26  
27  language: Haskell2010
28  
29  default-extensions:
30  - ImportQualifiedPost
31  
32  library:
33    source-dirs: src
34    dependencies:
35      - largeword
36      - binary
37      - binary-parsers
38      - extra
39  
40  tests:
41    bulk-test:
42      main:                Spec.hs
43      source-dirs:         test
44      ghc-options:
45      - -threaded
46      - -rtsopts
47      - -with-rtsopts=-N
48      - -Wall
49      dependencies:
50      - bulk
51      - digits
52      - hspec
53      - binary
54      - quickcheck-instances
55      - QuickCheck
56      - random