-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdhall-secret.cabal
104 lines (98 loc) · 3.05 KB
/
dhall-secret.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
cabal-version: 3.0
name: dhall-secret
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: oyanglulu@gmail.com
author: Jichao Ouyang
homepage: https://github.com/jcouyang/dhall-secret
synopsis: Encrypt Decrypt Dhall expressions
description: A simple tool to manage secrets in Dhall configuration
category: Data
build-type: Simple
extra-source-files:
README.md
src/Type.dhall
test/*.key
test/*.dhall
source-repository head
type: git
location: https://github.com/jcouyang/dhall-secret
library
exposed-modules:
Dhall.Secret
Dhall.Secret.Age
Dhall.Secret.Aws
Dhall.Secret.IO
Dhall.Secret.Type
hs-source-dirs: src
other-modules: Paths_dhall_secret
autogen-modules: Paths_dhall_secret
default-language: Haskell2010
default-extensions:
QuasiQuotes TemplateHaskell NamedFieldPuns OverloadedStrings
ghc-options: -Wall
build-depends:
base >=4.18.2.1 && <4.19,
amazonka >=2.0 && <2.1,
bytestring >=0.11.5.3 && <0.12,
text >=2.0.2 && <2.1,
unordered-containers >=0.2.20 && <0.3,
cryptonite >=0.30 && <0.31,
memory >=0.18.0 && <0.19,
pem >=0.2.4 && <0.3,
lens >=5.3.2 && <5.4,
amazonka-kms >=2.0 && <2.1,
base64-bytestring >=1.2.1.0 && <1.3,
bech32 >=1.1.7 && <1.2,
dhall >=1.42.1 && <1.43
executable dhall-secret
main-is: Main.hs
hs-source-dirs: app
other-modules: Paths_dhall_secret
autogen-modules: Paths_dhall_secret
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.18.2.1 && <4.19,
dhall-secret,
amazonka >=2.0 && <2.1,
bytestring >=0.11.5.3 && <0.12,
text >=2.0.2 && <2.1,
unordered-containers >=0.2.20 && <0.3,
cryptonite >=0.30 && <0.31,
memory >=0.18.0 && <0.19,
pem >=0.2.4 && <0.3,
lens >=5.3.2 && <5.4,
amazonka-kms >=2.0 && <2.1,
base64-bytestring >=1.2.1.0 && <1.3,
bech32 >=1.1.7 && <1.2,
dhall >=1.42.1 && <1.43,
optparse-applicative >=0.18.1.0 && <0.19
test-suite dhall-secret-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
other-modules:
Paths_dhall_secret
Age
autogen-modules:
Paths_dhall_secret
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.18.2.1 && <4.19,
dhall-secret,
HUnit,
amazonka >=2.0 && <2.1,
bytestring >=0.11.5.3 && <0.12,
text >=2.0.2 && <2.1,
unordered-containers >=0.2.20 && <0.3,
cryptonite >=0.30 && <0.31,
memory >=0.18.0 && <0.19,
pem >=0.2.4 && <0.3,
lens >=5.3.2 && <5.4,
amazonka-kms >=2.0 && <2.1,
base64-bytestring >=1.2.1.0 && <1.3,
bech32 >=1.1.7 && <1.2,
dhall >=1.42.1 && <1.43