-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcodec-jvm.cabal
56 lines (53 loc) · 1.58 KB
/
codec-jvm.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
name: codec-jvm
version: 0.1
license: Apache-2.0
license-file: LICENSE
author: Alois Cochard
maintainer: [email protected]
copyright: Copyright (c) 2015 Alois Cochard
(c) 2016-2017 Rahul Muttineni
category: Development
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fno-warn-unused-do-bind
exposed-modules:
Codec.JVM
Codec.JVM.ASM
Codec.JVM.ASM.Code
Codec.JVM.ASM.Code.CtrlFlow
Codec.JVM.ASM.Code.Instr
Codec.JVM.ASM.Code.Types
Codec.JVM.Attr
Codec.JVM.Class
Codec.JVM.Parse
Codec.JVM.Const
Codec.JVM.ConstPool
Codec.JVM.Encoding
Codec.JVM.Field
Codec.JVM.Internal
Codec.JVM.Method
Codec.JVM.Opcode
Codec.JVM.Types
build-depends:
base >= 4.6.0.1 && < 5
, binary >= 0.7 && < 0.9
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
, text >= 1.2 && < 1.3
, stringsearch
, mtl
, array
, transformers
default-extensions: NamedFieldPuns
executable example
hs-source-dirs: example
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, bytestring
, text
, codec-jvm
, containers