File: rio.cabal

package info (click to toggle)
haskell-rio 0.1.22.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: haskell: 4,858; makefile: 3
file content (174 lines) | stat: -rw-r--r-- 3,669 bytes parent folder | download | duplicates (2)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
cabal-version: 1.12

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

name:           rio
version:        0.1.22.0
synopsis:       A standard library for Haskell
description:    See README and Haddocks at <https://www.stackage.org/package/rio>
category:       Control
homepage:       https://github.com/commercialhaskell/rio#readme
bug-reports:    https://github.com/commercialhaskell/rio/issues
author:         Michael Snoyman
maintainer:     michael@snoyman.com
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/commercialhaskell/rio

library
  exposed-modules:
      RIO
      RIO.ByteString
      RIO.ByteString.Lazy
      RIO.ByteString.Lazy.Partial
      RIO.ByteString.Partial
      RIO.Char
      RIO.Char.Partial
      RIO.Deque
      RIO.Directory
      RIO.File
      RIO.FilePath
      RIO.HashMap
      RIO.HashMap.Partial
      RIO.HashSet
      RIO.Lens
      RIO.List
      RIO.List.Partial
      RIO.Map
      RIO.Map.Partial
      RIO.Map.Unchecked
      RIO.NonEmpty
      RIO.NonEmpty.Partial
      RIO.Partial
      RIO.Prelude
      RIO.Prelude.Simple
      RIO.Prelude.Types
      RIO.Process
      RIO.Seq
      RIO.Set
      RIO.Set.Partial
      RIO.Set.Unchecked
      RIO.State
      RIO.Text
      RIO.Text.Lazy
      RIO.Text.Lazy.Partial
      RIO.Text.Partial
      RIO.Time
      RIO.Vector
      RIO.Vector.Boxed
      RIO.Vector.Boxed.Partial
      RIO.Vector.Boxed.Unsafe
      RIO.Vector.Partial
      RIO.Vector.Storable
      RIO.Vector.Storable.Partial
      RIO.Vector.Storable.Unsafe
      RIO.Vector.Unboxed
      RIO.Vector.Unboxed.Partial
      RIO.Vector.Unboxed.Unsafe
      RIO.Vector.Unsafe
      RIO.Writer
  other-modules:
      RIO.Prelude.Display
      RIO.Prelude.Exit
      RIO.Prelude.Extra
      RIO.Prelude.IO
      RIO.Prelude.Lens
      RIO.Prelude.Logger
      RIO.Prelude.Reexports
      RIO.Prelude.Renames
      RIO.Prelude.RIO
      RIO.Prelude.Text
      RIO.Prelude.Trace
      RIO.Prelude.URef
  hs-source-dirs:
      src/
  build-depends:
      base >=4.12 && <10
    , bytestring
    , containers
    , deepseq
    , directory
    , exceptions
    , filepath
    , hashable
    , microlens
    , microlens-mtl
    , mtl
    , primitive
    , process
    , text
    , time
    , typed-process >=0.2.5.0
    , unliftio >=0.2.14
    , unliftio-core
    , unordered-containers
    , vector
  if os(windows)
    cpp-options: -DWINDOWS
    build-depends:
        Win32
  else
    build-depends:
        unix
  default-language: Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      RIO.DequeSpec
      RIO.FileSpec
      RIO.ListSpec
      RIO.LoggerSpec
      RIO.Prelude.ExtraSpec
      RIO.Prelude.IOSpec
      RIO.Prelude.RIOSpec
      RIO.Prelude.SimpleSpec
      RIO.PreludeSpec
      RIO.TextSpec
      Paths_rio
  hs-source-dirs:
      test
  build-depends:
      QuickCheck
    , base >=4.12 && <10
    , bytestring
    , containers
    , deepseq
    , directory
    , exceptions
    , filepath
    , hashable
    , hspec
    , microlens
    , microlens-mtl
    , mtl
    , primitive
    , process
    , rio
    , text
    , time
    , typed-process >=0.2.5.0
    , unliftio >=0.2.14
    , unliftio-core
    , unordered-containers
    , vector
  if os(windows)
    cpp-options: -DWINDOWS
    build-depends:
        Win32
  else
    build-depends:
        unix
  default-language: Haskell2010
  build-tool-depends:
      hspec-discover:hspec-discover