passman/package.yaml

65 lines
1.6 KiB
YAML
Raw Normal View History

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"
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.
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
- containers >= 0.6.2.1 && < 0.7
- 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
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
- 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