-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-bitcode.cabal
92 lines (86 loc) · 2.41 KB
/
data-bitcode.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
name: data-bitcode
version: 0.1.0.0
synopsis: bitcode reader and writer
homepage: https://github.com/angerman/data-bitcode#readme
bug-reports: https://github.com/angerman/data-bitcode/issues
author: Moritz Angermann <[email protected]>
maintainer: Moritz Angermann <[email protected]>
copyright: lichtzwerge GmbH
license: BSD3
license-file: LICENSE
category: Code Generation
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/angerman/data-bitcode
library
hs-source-dirs:
src
exposed-modules:
Data.BitCode
Data.BitCode.Abbreviation
Data.BitCode.AbbrevOpEncoding
Data.BitCode.Codes.BlockInfo
Data.BitCode.IDs.FixedAbbrev
Data.BitCode.IDs.StandardBlock
Data.BitCode.Reader
Data.BitCode.Reader.Combinators
Data.BitCode.Reader.FromBits
Data.BitCode.Reader.Monad
Data.BitCode.Writer
Data.BitCode.Writer.Monad
Data.BitCode.Writer.ToBits
build-depends:
base >= 4.10 && <5
, pretty
, bytestring
, binary
, containers
, transformers
default-language: Haskell2010
test-suite spec
main-is: Tasty.hs
hs-source-dirs: test
other-modules: BitcodeSpec
ghc-options: -Wall -threaded
type: exitcode-stdio-1.0
build-depends: base >= 4.10 && <5
, tasty
, tasty-discover
, tasty-hspec
, tasty-quickcheck
, process
, filepath
, data-bitcode
-- , data-bitcode-llvm
-- , data-bitcode-llvm
default-language: Haskell2010
benchmark writer
type: exitcode-stdio-1.0
main-is: Prof.hs
hs-source-dirs:
prof/src
ghc-options: -main-is Prof
build-depends:
base >= 4.10 && < 5
, binary
, data-bitcode
other-modules:
default-language: Haskell2010
benchmark bitcode
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs:
bench/src
ghc-options: -main-is Bench
build-depends:
base >= 4.10 && < 5
, pretty >= 1.1
, bytestring >= 0.10
, binary >= 0.8
, containers >= 0.5
, criterion
, data-bitcode
other-modules:
default-language: Haskell2010