2018-12-06 14:31:36 -05:00
|
|
|
name: passman
|
2021-05-14 13:55:01 -04:00
|
|
|
version: 0.3.1
|
2021-11-13 23:50:08 -05:00
|
|
|
license: LGPL-3.0-or-later
|
2018-12-06 14:31:36 -05:00
|
|
|
author: "Jonathan Lamothe"
|
2020-12-14 22:41:24 -05:00
|
|
|
maintainer: "jonathan@jlamothe.net"
|
2023-05-02 16:48:44 -04:00
|
|
|
copyright: "(C) 2018-2023 Jonathan Lamothe"
|
2021-11-13 23:50:08 -05:00
|
|
|
homepage: https://codeberg.org/jlamothe/passman
|
2021-11-14 03:47:53 -05:00
|
|
|
bug-reports: https://codeberg.org/jlamothe/passman/issues
|
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.
|
2021-11-13 23:54:06 -05:00
|
|
|
description: a simple password manager - see README.md for details
|
2018-12-06 14:31:36 -05:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
2023-05-02 17:27:58 -04:00
|
|
|
- aeson >= 2.0.3.0 && < 2.1
|
|
|
|
- bytestring >= 0.11.4.0 && < 0.12
|
2021-05-09 12:57:38 -04:00
|
|
|
- containers >= 0.6.2.1 && < 0.7
|
2021-01-05 21:22:41 -05:00
|
|
|
- microlens >= 0.4.11.2 && < 0.5
|
|
|
|
- microlens-th >= 0.4.3.6 && < 0.5
|
2023-05-02 17:27:58 -04:00
|
|
|
- random >=1.2.1.1 && < 1.3
|
2018-12-06 14:31:36 -05:00
|
|
|
|
2020-02-28 01:23:44 -05:00
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
|
2018-12-06 14:31:36 -05:00
|
|
|
library:
|
|
|
|
source-dirs: src
|
2018-12-21 17:04:37 -05:00
|
|
|
dependencies:
|
2023-05-02 17:27:58 -04:00
|
|
|
- base16-bytestring >= 1.0.2.0 && < 1.1
|
|
|
|
- base64-bytestring >= 1.2.1.0 && < 1.3
|
2021-05-09 13:36:27 -04:00
|
|
|
- SHA >= 1.6.4.4 && < 1.7
|
|
|
|
- text >= 1.2.4.1 && < 1.3
|
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
|
2020-02-28 01:55:23 -05:00
|
|
|
- easy-file >= 0.2.2 && < 0.3
|
2021-01-05 10:28:18 -05:00
|
|
|
- HCL >= 1.8 && < 1.9
|
2021-05-09 14:41:20 -04:00
|
|
|
- transformers >= 0.5.6.2 && < 0.6
|
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
|