Skip to content

Commit 1ef6849

Browse files
committed
Base 4.16.4.0
1 parent e5cb48f commit 1ef6849

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

base-noprelude.cabal

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: base-noprelude
3-
version: 4.12.0.0
3+
version: 4.16.4.0
44

55
synopsis: "base" package sans "Prelude" module
66
homepage: https://github.com/hvr/base-noprelude
@@ -14,7 +14,7 @@ build-type: Simple
1414
description:
1515
This package simplifies defining custom "Prelude"s without having
1616
to use @-XNoImplicitPrelude@ by re-exporting the full module-hierarchy of
17-
the [base-4.12.0.0](https://hackage.haskell.org/package/base-4.12.0.0)
17+
the [base-4.16.4.0](https://hackage.haskell.org/package/base-4.16.4.0)
1818
package /except/ for the "Prelude" module.
1919
.
2020
An usage example for such a "Prelude"-replacement is available with
@@ -35,10 +35,10 @@ source-repository head
3535
location: https://github.com/hvr/base-noprelude.git
3636

3737
library
38-
build-depends: base ==4.12.0.0
38+
build-depends: base ==4.16.4.0
3939
default-language: Haskell2010
4040

41-
-- re-exported modules copied from base-4.12.0.0's exposed-modules
41+
-- re-exported modules copied from base-4.16.4.0's exposed-modules
4242
reexported-modules:
4343
, Control.Applicative
4444
, Control.Arrow
@@ -107,6 +107,7 @@ library
107107
, Data.Type.Bool
108108
, Data.Type.Coercion
109109
, Data.Type.Equality
110+
, Data.Type.Ord
110111
, Data.Typeable
111112
, Data.Unique
112113
, Data.Version
@@ -136,6 +137,7 @@ library
136137
, Foreign.Storable
137138
, GHC.Arr
138139
, GHC.Base
140+
, GHC.Bits
139141
, GHC.ByteOrder
140142
, GHC.Char
141143
, GHC.Clock
@@ -149,6 +151,7 @@ library
149151
, GHC.Enum
150152
, GHC.Environment
151153
, GHC.Err
154+
, GHC.Event.TimeOut
152155
, GHC.Exception
153156
, GHC.Exception.Type
154157
, GHC.ExecutionStack
@@ -162,6 +165,7 @@ library
162165
, GHC.Foreign
163166
, GHC.ForeignPtr
164167
, GHC.GHCi
168+
, GHC.GHCi.Helpers
165169
, GHC.Generics
166170
, GHC.IO
167171
, GHC.IO.Buffer
@@ -186,9 +190,14 @@ library
186190
, GHC.IO.Handle.Types
187191
, GHC.IO.IOMode
188192
, GHC.IO.Unsafe
193+
, GHC.IO.StdHandles
194+
, GHC.IO.SubSystem
189195
, GHC.IOArray
190196
, GHC.IORef
191197
, GHC.Int
198+
, GHC.Integer
199+
, GHC.Integer.Logarithms
200+
, GHC.Ix
192201
, GHC.List
193202
, GHC.Maybe
194203
, GHC.MVar
@@ -217,7 +226,9 @@ library
217226
, GHC.Storable
218227
, GHC.TopHandler
219228
, GHC.TypeLits
229+
, GHC.TypeLits.Internal
220230
, GHC.TypeNats
231+
, GHC.TypeNats.Internal
221232
, GHC.Unicode
222233
, GHC.Weak
223234
, GHC.Word
@@ -249,6 +260,11 @@ library
249260
, Type.Reflection
250261
, Type.Reflection.Unsafe
251262
, Unsafe.Coerce
263+
-- TODO: remove
264+
, GHC.IOPort
265+
, GHC.Num.Integer
266+
, GHC.Num.Natural
267+
, GHC.Num.BigNat
252268

253269
-- OS Specific
254270
if os(windows)

0 commit comments

Comments
 (0)