2018-12-06 14:31:36 -05:00
|
|
|
name: passman
|
2023-05-02 17:29:31 -04:00
|
|
|
version: 0.3.1.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"
|
2024-09-07 14:43:22 -04:00
|
|
|
copyright: "(C) 2018-2024 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
|
2024-09-07 14:36:48 -04:00
|
|
|
- aeson >= 2.1.2.1 && < 2.2
|
2023-05-02 17:27:58 -04:00
|
|
|
- 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
|
2024-09-07 20:41:43 -04:00
|
|
|
- microlens-mtl >= 0.2.0.3 && < 0.3
|
2023-05-02 17:27:58 -04:00
|
|
|
- random >=1.2.1.1 && < 1.3
|
2024-09-07 15:00:17 -04:00
|
|
|
- brick >= 2.1.1 && < 2.2
|
2024-09-07 20:41:43 -04:00
|
|
|
- vty >= 6.1 && < 6.2
|
|
|
|
- mtl >= 2.3.1 && < 2.4
|
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
|
2024-09-07 14:36:48 -04:00
|
|
|
- text >= 2.0.2 && < 2.1
|
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
|
|
|
|
|
|
|
|
tests:
|
|
|
|
passman-test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- passman
|
|
|
|
- HUnit
|