packages feed

neko-lib-0.0.1.0: neko-lib.cabal

name:                neko-lib

version:             0.0.1.0

synopsis:            Neko VM code generation and disassembly library
description:         Neko Virtual Machine (http://nekovm.org) is a light-weight and portable byte code interpreter; neko-lib is a library for reading and writing NekoVM bytecode implemented entirely in Haskell.
homepage:            http://github.com/ppenzin/neko-lib-hs/
license:             BSD2
license-file:        LICENSE
author:              Petr Penzin
maintainer:          penzin-dev@gmail.com
category:            Build
build-type:          Simple
cabal-version:       >=1.8
data-files:          

source-repository head
  type:              git
  location:          https://github.com/ppenzin/neko-lib-hs.git

source-repository this
  type:              git
  location:          https://github.com/ppenzin/neko-lib-hs.git
  tag:               0.0.1.0

Library
  hs-source-dirs:      src/lib
  exposed-modules:     Binary.Neko.Module, Binary.Neko.Globals, Binary.Neko.Instructions, Binary.Neko.Hashtbl
  build-depends:       base>=4 && <5, bytestring, binary>=0.9.0.0, containers>=0.5.0.0, optparse-applicative, tagged

Test-suite test-lib
  type:                exitcode-stdio-1.0
  hs-source-dirs:      src/test, src/lib
  main-is:             Main.hs
  build-depends:       base>=4.7.0.0, bytestring, binary>=0.6.4.0, containers>=0.5.0.0, optparse-applicative, tagged, process, random, directory, tasty==0.10.1.2, tasty-smallcheck==0.8.0.1, tasty-hunit==0.9.2, temporary==1.2.0.3