Skip to content

Commit b4b8467

Browse files
restyled-commitsiphydf
authored andcommitted
Restyled by cabal-fmt
1 parent d119f82 commit b4b8467

File tree

1 file changed

+49
-62
lines changed

1 file changed

+49
-62
lines changed

msgpack-binary.cabal

+49-62
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: msgpack-binary
2-
version: 0.0.17
3-
synopsis: A Haskell implementation of MessagePack
4-
homepage: http://msgpack.org/
5-
license: BSD3
6-
license-file: LICENSE
7-
author: Hideyuki Tanaka
8-
maintainer: Iphigenia Df <[email protected]>
9-
copyright: Copyright (c) 2009-2016, Hideyuki Tanaka
10-
category: Data
11-
stability: Experimental
12-
cabal-version: >= 1.10
13-
build-type: Simple
1+
name: msgpack-binary
2+
version: 0.0.17
3+
synopsis: A Haskell implementation of MessagePack
4+
homepage: http://msgpack.org/
5+
license: BSD3
6+
license-file: LICENSE
7+
author: Hideyuki Tanaka
8+
maintainer: Iphigenia Df <[email protected]>
9+
copyright: Copyright (c) 2009-2016, Hideyuki Tanaka
10+
category: Data
11+
stability: Experimental
12+
cabal-version: >=1.10
13+
build-type: Simple
1414
description:
1515
A Haskell implementation of MessagePack <http://msgpack.org/>
1616
.
@@ -19,88 +19,75 @@ description:
1919
bugfixes and is actively being developed.
2020

2121
source-repository head
22-
type: git
23-
location: https://github.com/TokTok/hs-msgpack-binary
22+
type: git
23+
location: https://github.com/TokTok/hs-msgpack-binary
2424

2525
library
2626
default-language: Haskell2010
27-
hs-source-dirs:
28-
src
29-
ghc-options:
30-
-Wall
31-
-Wno-unused-imports
32-
exposed-modules:
33-
Data.MessagePack
27+
hs-source-dirs: src
28+
ghc-options: -Wall -Wno-unused-imports
29+
exposed-modules: Data.MessagePack
3430
other-modules:
35-
Data.MessagePack.Get
36-
Data.MessagePack.Put
31+
Data.MessagePack.Get
32+
Data.MessagePack.Put
33+
3734
build-depends:
38-
base < 5
39-
, binary >= 0.7.0.0
35+
base <5
36+
, binary >=0.7.0.0
4037
, bytestring
4138
, data-binary-ieee754
4239
, monad-validate
43-
, msgpack-types >= 0.3.2 && < 0.4
40+
, msgpack-types >=0.3.2 && <0.4
4441
, text
4542
, vector
4643

4744
executable msgpack-gen-sample
4845
default-language: Haskell2010
49-
hs-source-dirs:
50-
tools
51-
ghc-options:
52-
-Wall
53-
-Wno-unused-imports
54-
main-is: msgpack-gen-sample.hs
46+
hs-source-dirs: tools
47+
ghc-options: -Wall -Wno-unused-imports
48+
main-is: msgpack-gen-sample.hs
5549
build-depends:
56-
base < 5
57-
, msgpack-arbitrary >= 0.1.3 && < 0.2
50+
base <5
51+
, msgpack-arbitrary >=0.1.3 && <0.2
5852
, msgpack-binary
5953

6054
executable msgpack-parser
6155
default-language: Haskell2010
62-
hs-source-dirs:
63-
tools
64-
ghc-options:
65-
-Wall
66-
-Wno-unused-imports
67-
main-is: msgpack-parser.hs
56+
hs-source-dirs: tools
57+
ghc-options: -Wall -Wno-unused-imports
58+
main-is: msgpack-parser.hs
6859
build-depends:
69-
base < 5
60+
base <5
7061
, msgpack-arbitrary
7162
, msgpack-binary
7263

7364
test-suite testsuite
74-
type: exitcode-stdio-1.0
65+
type: exitcode-stdio-1.0
7566
default-language: Haskell2010
76-
hs-source-dirs: test
77-
main-is: testsuite.hs
78-
other-modules:
79-
Data.MessagePackSpec
80-
ghc-options:
81-
-Wall
82-
-Wno-unused-imports
67+
hs-source-dirs: test
68+
main-is: testsuite.hs
69+
other-modules: Data.MessagePackSpec
70+
ghc-options: -Wall -Wno-unused-imports
8371
build-depends:
84-
base < 5
72+
base <5
8573
, hspec
8674
, msgpack-binary
87-
, msgpack-testsuite >= 0.1.0 && < 0.2
75+
, msgpack-testsuite >=0.1.0 && <0.2
8876

8977
benchmark benchmark
90-
type: exitcode-stdio-1.0
78+
type: exitcode-stdio-1.0
9179
default-language: Haskell2010
92-
hs-source-dirs: bench
93-
main-is: benchmark.hs
80+
hs-source-dirs: bench
81+
main-is: benchmark.hs
9482
other-modules:
95-
Data.MessagePack.IntBench
96-
Data.MessagePackBench
97-
ghc-options:
98-
-Wall
99-
-Wno-unused-imports
83+
Data.MessagePack.IntBench
84+
Data.MessagePackBench
85+
86+
ghc-options: -Wall -Wno-unused-imports
10087
build-depends:
101-
base < 5
102-
, QuickCheck
88+
base <5
10389
, bytestring
10490
, criterion
10591
, deepseq
10692
, msgpack-binary
93+
, QuickCheck

0 commit comments

Comments
 (0)