wordpass-0.2.0.0: wordpass.cabal
name: wordpass
version: 0.2.0.0
synopsis: Dictionary-based password generator
description: This script reads dict word lists and generates word-based passwords.
Not unlike http://xkcd.com/936/.
homepage: https://github.com/mjgajda/wordpass
license: BSD3
license-file: LICENSE
author: Michal J. Gajda
maintainer: mjgajda@gmail.com
copyright: Michal J. Gajda
category: System
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable wordpass
main-is: WordPass.hs
other-modules: Data.Random.RVar.Enum
other-extensions: OverlappingInstances, MultiParamTypeClasses, FlexibleInstances
build-depends: base >=4.6 && <4.7, text >=1.1 && <1.2, containers >=0.5 && <0.6, random-fu >=0.2 && <0.3, random-source >=0.3 && <0.4, vector >=0.10 && <0.11, directory >= 1.2 && < 1.4
-- hs-source-dirs:
default-language: Haskell2010