2018-12-06 14:31:36 -05:00
|
|
|
name: passman
|
2019-01-01 23:03:09 -05:00
|
|
|
version: 0.2
|
2018-12-06 14:31:36 -05:00
|
|
|
github: "jlamothe/passman"
|
|
|
|
license: LGPL-3
|
|
|
|
author: "Jonathan Lamothe"
|
|
|
|
maintainer: "jlamothe1980@gmail.com"
|
2019-01-01 04:47:42 -05:00
|
|
|
copyright: "(C) 2018, 2019 Jonathan Lamothe"
|
2018-12-06 14:31:36 -05:00
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
|
|
|
|
|
|
|
# Metadata used when publishing your package
|
|
|
|
synopsis: a simple password manager
|
|
|
|
category: Security
|
|
|
|
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
|
|
# common to point users to the README.md file.
|
|
|
|
description: Please see the README on GitHub at <https://github.com/jlamothe/passman#readme>
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
2018-12-29 12:21:25 -05:00
|
|
|
- aeson
|
2018-12-17 15:18:01 -05:00
|
|
|
- bytestring
|
|
|
|
- containers
|
2018-12-09 00:35:27 -05:00
|
|
|
- lens
|
2018-12-17 16:09:40 -05:00
|
|
|
- random
|
2018-12-06 14:31:36 -05:00
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: src
|
2018-12-21 17:04:37 -05:00
|
|
|
dependencies:
|
2019-01-01 22:45:03 -05:00
|
|
|
- base16-bytestring
|
2018-12-21 17:32:06 -05:00
|
|
|
- base64-bytestring
|
2018-12-21 17:04:37 -05:00
|
|
|
- SHA
|
2018-12-21 17:17:12 -05:00
|
|
|
- text
|
2018-12-06 14:31:36 -05:00
|
|
|
|
|
|
|
executables:
|
2018-12-07 21:07:42 -05:00
|
|
|
passman:
|
2018-12-06 14:31:36 -05:00
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- passman
|
2018-12-07 21:07:42 -05:00
|
|
|
- HCL >= 1.7.1 && < 2
|
2018-12-09 00:35:27 -05:00
|
|
|
- transformers
|
2018-12-06 14:31:36 -05:00
|
|
|
|
|
|
|
tests:
|
|
|
|
passman-test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- passman
|
|
|
|
- HUnit
|