cabal-version: 3.0 name: wordlist version: 0.1.0.7 synopsis: Command-line tool to get random words category: Text, Application description: A command-line application that outputs a random list of words, designed to generate memorable passwords. author: Chris Martin maintainer: Chris Martin homepage: https://github.com/chris-martin/wordlist license: Apache-2.0 license-file: license.txt extra-source-files: *.md common base default-language: Haskell2010 ghc-options: -Wall build-depends: base ^>= 4.17 , optparse-applicative ^>= 0.16 || ^>= 0.17 , text ^>= 2 library import: base hs-source-dirs: src exposed-modules: Wordlist.Args executable wordlist import: base main-is: wordlist.hs hs-source-dirs: exe build-depends: MonadRandom ^>= 0.5.1 , vector ^>= 0.12 , wordlist