2013-08-09 17:19:22 +02:00
|
|
|
-- Initial scat.cabal generated by cabal init. For further documentation,
|
|
|
|
-- see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
-- The name of the package.
|
|
|
|
name: scat
|
|
|
|
|
|
|
|
-- The package version. See the Haskell package versioning policy (PVP)
|
|
|
|
-- for standards guiding when and how versions should be incremented.
|
|
|
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
|
|
|
-- PVP summary: +-+------- breaking API changes
|
|
|
|
-- | | +----- non-breaking API additions
|
|
|
|
-- | | | +--- code changes with no API change
|
2013-08-10 00:13:45 +02:00
|
|
|
version: 0.2.0.0
|
2013-08-09 17:19:22 +02:00
|
|
|
|
|
|
|
-- A short (one-line) description of the package.
|
|
|
|
synopsis: Generates unique passwords for various websites from a single password.
|
|
|
|
|
|
|
|
-- A longer description of the package.
|
|
|
|
-- description:
|
|
|
|
|
|
|
|
-- The license under which the package is released.
|
|
|
|
license: BSD3
|
|
|
|
|
|
|
|
-- The file containing the license text.
|
|
|
|
license-file: LICENSE
|
|
|
|
|
|
|
|
-- The package author(s).
|
|
|
|
author: Romain Edelmann
|
|
|
|
|
|
|
|
-- An email address to which users can send suggestions, bug reports, and
|
|
|
|
-- patches.
|
|
|
|
maintainer: romain.edelmann@gmail.com
|
|
|
|
|
|
|
|
-- A copyright notice.
|
|
|
|
-- copyright:
|
|
|
|
|
|
|
|
category: Password
|
|
|
|
|
|
|
|
build-type: Simple
|
|
|
|
|
|
|
|
-- Constraint on the version of Cabal needed to build this package.
|
|
|
|
cabal-version: >=1.8
|
|
|
|
|
|
|
|
data-dir: lists
|
|
|
|
|
|
|
|
data-files: *.txt
|
|
|
|
|
|
|
|
executable scat
|
|
|
|
-- .hs or .lhs file containing the Main module.
|
|
|
|
main-is: Scat.hs
|
|
|
|
|
|
|
|
ghc-options: -Wall -O3
|
|
|
|
|
|
|
|
hs-source-dirs: src
|
|
|
|
|
|
|
|
-- Modules included in this executable, other than Main.
|
|
|
|
other-modules: Scat.Builder, Scat.Schemas, Scat.Options, Scat.Utils.Permutation, Paths_scat
|
|
|
|
|
|
|
|
-- Other library packages from which modules are imported.
|
2013-08-10 00:13:45 +02:00
|
|
|
build-depends: base ==4.5.*, scrypt ==0.3.*, bytestring ==0.9.*, optparse-applicative ==0.5.*, mtl ==2.1.*, vector ==0.10.*
|
2013-08-09 17:19:22 +02:00
|
|
|
|