-
Notifications
You must be signed in to change notification settings - Fork 0
/
genpass.cabal
69 lines (64 loc) · 2.35 KB
/
genpass.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
cabal-version: 3.0
name: genpass
version: 0.1.0.1
synopsis: Command Line Tool to Generate/Check Passwords with Some Rules
description: Command Line Tool to Generate/Check Passwords with Some Rules
homepage: https://github.com/syocy/genpass
bug-reports: https://github.com/syocy/genpass/issues
license: BSD-3-Clause
license-file: LICENSE
author: OSANAI Kazuyoshi
maintainer: [email protected]
copyright: 2020 OSANAI Kazuyoshi
category: Password
build-type: Simple
extra-source-files: CHANGELOG.md
, README.md
library
exposed-modules: GenPass
, GenPass.Cp
, GenPass.Range
, GenPass.Runner
, GenPass.Setting
, Paths_genpass
other-modules: Paths_pkgname
autogen-modules: Paths_genpass
hs-source-dirs: src
build-depends: base >=4.13 && <4.14
, barbies >=2.0
, generic-deriving
, cryptonite >=0.26
, memory
, bytestring
, text
, optics >=0.2
, megaparsec >=8.0
, string-interpolate
, range
, deepseq
, ghc-compact
default-language: Haskell2010
ghc-options: -Wall -Wcompat -O -fomit-interface-pragmas -eventlog
executable genpass
main-is: Main.hs
-- other-extensions:
build-depends: base >=4.13 && <4.14
, genpass
, text
, optics >=0.2
, string-interpolate
, ghc-compact
default-language: Haskell2010
ghc-options: -Wall -Wcompat -O -fomit-interface-pragmas -eventlog -rtsopts
benchmark bench-genpass
type: exitcode-stdio-1.0
main-is: bench-genpass.hs
build-depends: base >=4.13 && <4.14
, genpass
, gauge >=0.2
, ghc-compact
, optics >=0.2
, silently
, deepseq
, process
default-language: Haskell2010