lua-bc-0.1: lua-bc.cabal
name: lua-bc
version: 0.1
synopsis: Lua bytecode parser
description: Lua bytecode parser
license: MIT
license-file: LICENSE
author: Eric Mertens
maintainer: emertens@galois.com
copyright: 2015 Galois, Inc.
category: Language
build-type: Simple
cabal-version: >=1.10
homepage: https://github.com/GaloisInc/lua-bc
bug-reports: https://github.com/GaloisInc/lua-bc/issues
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/GaloisInc/lua-bc
library
exposed-modules: Language.Lua.Bytecode
Language.Lua.Bytecode.Parser
Language.Lua.Bytecode.Pretty
Language.Lua.Bytecode.Debug
Language.Lua.Bytecode.FunId
build-depends: base >=4.8 && <4.10,
binary >=0.7 && <0.9,
data-binary-ieee754 >=0.4 && <0.5,
bytestring >=0.10 && <0.11,
text >=1.2 && <1.3,
vector >=0.10 && <0.12,
containers >=0.5 && <0.6,
pretty >=1.1 && <1.2
hs-source-dirs: src
default-language: Haskell2010