-- Initial RFC1751.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                RFC1751
version:             0.1.0.0
synopsis:            RFC-1751 library for Haskell
description:         Convert 128-bit ByteString to/from 12 English words.
homepage:            https://github.com/Xeno-Genesis/RFC1751
license:             PublicDomain
license-file:        UNLICENSE
author:              Jean-Pierre Rupp
maintainer:          root@xeno-genesis.com
-- copyright:           
category:            Data
build-type:          Simple
cabal-version:       >=1.8

source-repository head
    type:     git
    location: git@github.com:Xeno-Genesis/RFC1751.git

library
  exposed-modules:   Data.RFC1751
  build-depends:     base >=4.6 && <4.7,
                     binary

test-suite test-haskoin-crypto
    type:              exitcode-stdio-1.0
    main-is:           Main.hs
    other-modules:     Tests,
                       Units
    build-depends:     base,
                       binary,
                       bytestring,
                       RFC1751,
                       QuickCheck,
                       test-framework,
                       test-framework-quickcheck2,
                       test-framework-hunit,
                       HUnit
    hs-source-dirs:    . tests
    ghc-options:       -Wall