passman/package.yaml

67 lines
1.6 KiB
YAML
Raw Normal View History

2018-12-06 14:31:36 -05:00
name: passman
2021-05-14 13:55:01 -04:00
version: 0.3.1
2018-12-06 14:31:36 -05:00
github: "jlamothe/passman"
license: LGPL-3
author: "Jonathan Lamothe"
2020-12-14 22:41:24 -05:00
maintainer: "jonathan@jlamothe.net"
2021-01-05 21:08:41 -05:00
copyright: "(C) 2018-2021 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
- aeson >= 1.5.6.0 && < 1.6
- bytestring >= 0.10.12.0 && < 0.11
- containers >= 0.6.2.1 && < 0.7
- microlens >= 0.4.11.2 && < 0.5
- microlens-th >= 0.4.3.6 && < 0.5
- random >=1.1 && < 1.2
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:
- base16-bytestring >= 0.1.1.7 && < 0.2
- base64-bytestring >= 1.1.0.0 && < 1.2
- 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
- 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