File: say.cabal

package info (click to toggle)
haskell-say 0.1.0.1-6
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 100 kB
  • sloc: haskell: 263; makefile: 6
file content (79 lines) | stat: -rw-r--r-- 1,788 bytes parent folder | download | duplicates (4)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
cabal-version: >= 1.10

-- This file has been generated from package.yaml by hpack version 0.29.6.
--
-- see: https://github.com/sol/hpack
--
-- hash: 2dfe6e8fbd947bd63280cdcdd1f4fb437beeed6a147b44e1da866b43b1f1722a

name:           say
version:        0.1.0.1
synopsis:       Send textual messages to a Handle in a thread-friendly way
description:    Please see the README and documentation at <https://www.stackage.org/package/say>
category:       Text
homepage:       https://github.com/fpco/say#readme
bug-reports:    https://github.com/fpco/say/issues
author:         Michael Snoyman
maintainer:     michael@snoyman.com
copyright:      2016-2018 FP Complete
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/fpco/say

library
  exposed-modules:
      Say
  other-modules:
      Paths_say
  hs-source-dirs:
      src
  build-depends:
      base >=4.9.1 && <5
    , bytestring >=0.10.4
    , text >=1.2
    , transformers
  default-language: Haskell2010

test-suite say-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      SaySpec
      Paths_say
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts
  build-depends:
      base >=4.9.1 && <5
    , bytestring >=0.10.4
    , hspec
    , say
    , text >=1.2
    , transformers
    , unliftio
  default-language: Haskell2010

benchmark say-bench
  type: exitcode-stdio-1.0
  main-is: say-bench.hs
  other-modules:
      Paths_say
  hs-source-dirs:
      bench
  ghc-options: -threaded -O2 -rtsopts
  build-depends:
      base >=4.9.1 && <5
    , bytestring >=0.10.4
    , gauge
    , say
    , text >=1.2
    , transformers
    , unliftio
  default-language: Haskell2010