-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitfield.cabal
57 lines (55 loc) · 2.13 KB
/
bitfield.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
cabal-version: 2.4
name: bitfield
version: 0.0.0.1
synopsis: Generic and easy to use haskell bitfields
description: Generic and easy to use haskell bitfields. Allows packing and modifying datatypes in a compact representation. See `README.md` or 'Data.Bitfield' for documentation.
license: MIT
license-file: LICENSE
author: Jannis
maintainer: Jannis <overesch.jannis@gmail.com>
copyright: 2022 Jannis
category: Data, Bit
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
LICENSE
tested-with:
GHC ==8.8.4 || ==8.10.7 || ==9.2.5 || ==9.4.3
source-repository head
type: git
location: https://github.com/1Jajen1/bitfield
common common-options
build-depends: base >= 4 && < 5
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
-Wmissing-deriving-strategies
-haddock
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src
exposed-modules: Data.Bitfield
, Data.Bitfield.Internal
test-suite bitfield-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-tool-depends: sydtest-discover:sydtest-discover
build-depends: bitfield
, sydtest >= 0.12 && < 0.16
, validity >= 0.12 && < 0.13
, genvalidity >= 1.0 && < 1.2
, genvalidity-sydtest >= 1.0 && < 1.1
, QuickCheck >= 2.13 && < 2.15
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
other-modules: BitfieldSpec