-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSummarizeSSHKeys.cabal
33 lines (31 loc) · 1.17 KB
/
SummarizeSSHKeys.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
name: SummarizeSSHKeys
version: 1.0.0.0
synopsis: A utility to produce readable summaries of SSH authorized_keys files
homepage: https://github.com/neilmayhew/SummarizeSSHKeys
license: MIT
license-file: LICENSE
author: Neil Mayhew
maintainer: [email protected]
copyright: 2016
category: System
build-type: Simple
cabal-version: >=1.10
executable summarize-ssh-keys
main-is: SummarizeSSHKeys.hs
other-modules: QuietTesting, SSHKeys
default-language: Haskell2010
ghc-options: -Wall -Wcompat
build-depends: base >=4.5 && <5,
HUnit >=1.2 && <1.7,
parsec >= 2.0 && <4.0,
optparse-applicative,
terminal-size
test-suite all-tests
type: exitcode-stdio-1.0
other-modules: QuietTesting, SSHKeys
main-is: TestMain.hs
default-language: Haskell2010
ghc-options: -Wall -Wcompat
build-depends: base >=4.5 && <5,
HUnit >=1.2 && <1.7,
parsec >= 2.0 && <4.0