-
Notifications
You must be signed in to change notification settings - Fork 1
/
codec-jvm.cabal
39 lines (38 loc) · 1.16 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
name: codec-jvm
version: 0
license: Apache-2.0
license-file: LICENSE
author: Alois Cochard
maintainer: [email protected]
copyright: Copyright (c) 2015 Alois Cochard
category: Development
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
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.Cond
Codec.JVM.Const
Codec.JVM.ConstPool
Codec.JVM.Field
Codec.JVM.Internal
Codec.JVM.Method
Codec.JVM.Opcode
Codec.JVM.Types
build-depends:
base >= 4.6.0.1 && < 5
, base16-bytestring >= 0.1 && < 0.2
, binary >= 0.7 && < 0.8
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
, text >= 1.2 && < 1.3
, transformers >= 0.4 && < 0.5