cabal-version:	>= 1.6
build-type:	Simple

name:		bytable
version:	0.0.0.2
stability:	Experimental
author:		Yoshikuni Jujo <PAF01143@nifty.ne.jp>
maintainer:	Yoshikuni Jujo <PAF01143@nifty.ne.jp>

license:	BSD3
license-file:	LICENSE

category:	Codec
synopsis:	data from/to ByteString
description:
    You can read data from ByteString.
    .
    > some = do
    >     x <- take 4
    >     y <- take 8
    >     return (x :: Int, y :: Integer)
    .

source-repository	head
    type:	git
    location:	git://github.com/YoshikuniJujo/forest

source-repository	this
    type:	git
    location:	git://github.com/YoshikuniJujo/forest
    tag:	bytable-0.0.0.2

library
    hs-source-dirs:	src
    exposed-modules:	Codec.Bytable, Codec.Bytable.BigEndian
    build-depends:	base == 4.*, bytestring == 0.10.*
    ghc-options:	-Wall