Skip to content

Commit 69f5e3e

Browse files
committed
Update .cabal file
1 parent 5448311 commit 69f5e3e

2 files changed

Lines changed: 11 additions & 19 deletions

File tree

.hgignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

binary.cabal

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ version: 0.8.9.2
1313
license: BSD-3-Clause
1414
license-file: LICENSE
1515
author: Lennart Kolmodin <kolmodin@gmail.com>
16-
maintainer: Lennart Kolmodin, Don Stewart <dons00@gmail.com>
17-
homepage: https://github.com/kolmodin/binary
16+
maintainer: konsumlamm <konsumlamm@gmail.com>
17+
homepage: https://github.com/haskell/binary
1818
description: Efficient, pure binary serialisation using lazy ByteStrings.
1919
Haskell values may be encoded to and from binary formats,
2020
written to disk as binary, or sent over the network.
@@ -38,10 +38,10 @@ extra-doc-files:
3838

3939
source-repository head
4040
type: git
41-
location: git://github.com/kolmodin/binary.git
41+
location: https://github.com/haskell/binary.git
4242

4343
library
44-
build-depends: base >= 4.5.0.0 && < 5, bytestring >= 0.10.4, containers, array
44+
build-depends: base >= 4.9 && < 5, bytestring >= 0.10.4, containers, array
4545
hs-source-dirs: src
4646
exposed-modules: Data.Binary,
4747
Data.Binary.Put,
@@ -71,7 +71,7 @@ test-suite qc
7171
Action
7272
Arbitrary
7373
build-depends:
74-
base >= 4.5.0.0 && < 5,
74+
base >= 4.9 && < 5,
7575
base-orphans >=0.8.1 && <0.9,
7676
binary,
7777
bytestring >= 0.10.4,
@@ -88,13 +88,12 @@ test-suite qc
8888
build-depends: ghc-prim
8989
default-language: Haskell2010
9090

91-
9291
test-suite read-write-file
9392
type: exitcode-stdio-1.0
9493
hs-source-dirs: tests
9594
main-is: File.hs
9695
build-depends:
97-
base >= 4.5.0.0 && < 5,
96+
base >= 4.9 && < 5,
9897
binary,
9998
bytestring >= 0.10.4,
10099
Cabal,
@@ -118,7 +117,7 @@ benchmark throughput
118117
other-modules:
119118
MemBench
120119
build-depends:
121-
base >= 4.5.0.0 && < 5,
120+
base >= 4.9 && < 5,
122121
binary,
123122
bytestring >= 0.10.4
124123
-- build dependencies from using binary source rather than depending on the library
@@ -137,7 +136,7 @@ benchmark get
137136
main-is: Get.hs
138137
build-depends:
139138
attoparsec,
140-
base >= 4.5.0.0 && < 5,
139+
base >= 4.9 && < 5,
141140
binary,
142141
bytestring >= 0.10.4,
143142
cereal,
@@ -157,7 +156,7 @@ benchmark put
157156
hs-source-dirs: benchmarks
158157
main-is: Put.hs
159158
build-depends:
160-
base >= 4.5.0.0 && < 5,
159+
base >= 4.9 && < 5,
161160
binary,
162161
bytestring >= 0.10.4,
163162
deepseq,
@@ -175,7 +174,7 @@ benchmark generics-bench
175174
hs-source-dirs: benchmarks
176175
main-is: GenericsBench.hs
177176
build-depends:
178-
base >= 4.5.0.0 && < 5,
177+
base >= 4.9 && < 5,
179178
binary,
180179
bytestring >= 0.10.4,
181180
-- The benchmark already depended on 'generic-deriving' transitively. That's
@@ -205,7 +204,7 @@ benchmark builder
205204
hs-source-dirs: benchmarks
206205
main-is: Builder.hs
207206
build-depends:
208-
base >= 4.5.0.0 && < 5,
207+
base >= 4.9 && < 5,
209208
binary,
210209
bytestring >= 0.10.4,
211210
deepseq,

0 commit comments

Comments
 (0)