packages feed

elocrypt-0.3.2: elocrypt.cabal

name:                elocrypt
version:             0.3.2
synopsis:            Generate easy-to-remember, hard-to-guess passwords
homepage:            https://www.github.com/sgillespie/elocrypt
license:             OtherLicense
license-file:        LICENSE
author:              Sean Gillespie
maintainer:          sean@mistersg.net
copyright:           Copyright: (c) 2015 Sean Gillespie
category:            Cryptography
build-type:          Simple
extra-source-files:  README.md,
                     test/*.hs,
                     test/Test/*.hs,
                     test/Test/Elocrypt/*.hs
cabal-version:       >=1.10

description:
  Generates pronounceable, hard-to-guess passwords.. as hard as
  Vince Carter's knee cartilage is.

source-repository head
  type: git
  location: https://github.com/sgillespie/elocrypt.git

source-repository this
  type: git
  location: https://github.com/sgillespie/elocrypt.git
  tag: v0.3.2
                  
library
  exposed-modules:     Data.Elocrypt,
                       Data.Elocrypt.Trigraph
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.9,
                       MonadRandom,
                       random
  hs-source-dirs:      src/lib
  default-language:    Haskell2010

executable elocrypt
  build-depends:       base >= 4.7 && <4.9,
                       elocrypt,
                       random
  default-language:    Haskell2010
  hs-source-dirs:      src/cli
  main-is:             Main.hs

test-suite test
  build-depends:       base >= 4.7 && <4.9,
                       elocrypt,
                       MonadRandom,
                       QuickCheck,
                       random,
                       tasty,
                       tasty-quickcheck,
                       tasty-th
  default-language:    Haskell2010
  hs-source-dirs:      test
  main-is:             Tests.hs
  type:                exitcode-stdio-1.0