-
Notifications
You must be signed in to change notification settings - Fork 0
/
bits-and-bobs.cabal
99 lines (85 loc) · 2.48 KB
/
bits-and-bobs.cabal
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
cabal-version: 2.4
name: bits-and-bobs
version: 0.0.0
synopsis: Bit-level codec library
description:
See README at <https://github.com/stevana/bits-and-bobs#readme>
homepage: https://github.com/stevana/bits-and-bobs#readme
bug-reports: https://github.com/stevana/bits-and-bobs/issues
license: BSD-2-Clause
license-file: LICENSE
author: Stevan Andjelkovic
maintainer: [email protected]
copyright: Copyright (c) 2022-2023, Stevan Andjelkovic
category: library, serialization, binary, parsing
extra-source-files:
CHANGELOG.md
README.md
tested-with: GHC ==9.0.2
library
exposed-modules:
BitsAndBobs
BitsAndBobs.Accessor
BitsAndBobs.Block
BitsAndBobs.Codec
BitsAndBobs.Editor
BitsAndBobs.Mmap
BitsAndBobs.Schema
-- GHC boot library dependencies:
-- (https://gitlab.haskell.org/ghc/ghc/-/blob/master/packages)
build-depends:
, base >=4.15.1.0
, bytestring ^>=0.11.3.1
, containers
, mtl
, text
, unix
-- Other dependencies:
build-depends:
, QuickCheck
, vector ^>=0.12.3.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wredundant-constraints
-Wnoncanonical-monad-instances -Wmissing-export-lists
-Wpartial-fields -Wmissing-deriving-strategies -fhide-source-paths
-Wunused-packages
if impl(ghc >=9.0)
ghc-options:
-Winvalid-haddock -Wunicode-bidirectional-format-characters
-Werror=unicode-bidirectional-format-characters
if impl(ghc >=9.2)
ghc-options:
-Wredundant-bang-patterns -Woperator-whitespace -Wimplicit-lift
if impl(ghc >=9.4)
ghc-options: -Wredundant-strictness-flags
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
BitsAndBobs.AccessorTest
BitsAndBobs.CodecTest
BitsAndBobs.MmapTest
BitsAndBobs.SchemaTest
build-depends:
, base
, bits-and-bobs
, bytestring
, tasty
, tasty-hunit
, tasty-quickcheck
build-tool-depends: tasty-discover:tasty-discover
executable mp3
hs-source-dirs: app
main-is: Main.hs
build-depends:
, base
, bits-and-bobs
, bytestring
source-repository head
type: git
location: https://github.com/stevana/bits-and-bobs