-
Notifications
You must be signed in to change notification settings - Fork 2
/
aws-ec2-knownhosts.cabal
79 lines (65 loc) · 2.96 KB
/
aws-ec2-knownhosts.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
70
71
72
73
74
75
76
77
78
79
name: aws-ec2-knownhosts
version: 0.1.0.0
synopsis: Capture and manage AWS EC2 known_host pubkeys
description: Capture and manage AWS EC2 known_host pubkeys via the AWS API command line tool.
license: BSD3
license-file: LICENSE
author: Luke Hoersten
maintainer: [email protected], [email protected]
copyright: Bitnomial, Inc. (c) 2015
category: AWS, Network
build-type: Simple
cabal-version: >=1.10
homepage: http://github.com/bitnomial/aws-ec2-knownhosts
bug-reports: http://github.com/bitnomial/aws-ec2-knownhosts/issues
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
exposed-modules: AWS.KnownHosts
, AWS.PubKeys
, AWS.Types
build-depends: base >= 4.7 && < 5
, aeson >= 2.0 && < 2.3
, async >= 2.0 && < 2.3
, attoparsec >= 0.12 && < 0.15
, bytestring >= 0.10 && < 0.12
, directory >= 1.2 && < 1.4
, filepath >= 1.4 && < 1.5
, io-streams >= 1.3.4 && < 1.6
, process >= 1.4 && < 1.7
, text >= 2.0 && < 2.3
executable aws-ec2-pubkeys
main-is: Main.hs
hs-source-dirs: exec/aws-ec2-pubkeys/
default-language: Haskell2010
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
build-depends: base >= 4.7 && < 5
, aws-ec2-knownhosts
, io-streams >= 1.1 && < 1.6
, optparse-applicative >= 0.16 && < 0.19
, text >= 2.0 && < 2.3
executable aws-ec2-knownhosts
main-is: Main.hs
hs-source-dirs: exec/aws-ec2-knownhosts/
default-language: Haskell2010
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
build-depends: base >= 4.7 && < 5
, aeson >= 2.0 && < 2.3
, aws-ec2-knownhosts
, io-streams >= 1.1 && < 1.6
, optparse-applicative >= 0.16 && < 0.19
executable aws-ec2-keysync
main-is: Main.hs
hs-source-dirs: exec/aws-ec2-keysync/
default-language: Haskell2010
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
build-depends: base >= 4.7 && < 5
, aeson >= 2.0 && < 2.3
, aws-ec2-knownhosts
, io-streams >= 1.1 && < 1.6
, text >= 2.0 && < 2.3
, optparse-applicative >= 0.16 && < 0.19
, directory >= 1.3 && < 1.4
, unix-compat >= 0.4 && < 0.8
, process >= 1.0 && < 1.7