forked from channable/vaultenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
54 lines (49 loc) · 843 Bytes
/
package.yaml
File metadata and controls
54 lines (49 loc) · 843 Bytes
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
name: vaultenv
version: 0.10.0
synopsis: Runs processes with secrets from HashiCorp Vault
license: BSD3
github: channable/vaultenv
dependencies:
- aeson
- base
- async
- bytestring
- connection
- containers
- dotenv
- directory
- http-conduit
- http-client
- megaparsec
- mtl
- optparse-applicative
- parser-combinators
- retry
- text
- unordered-containers
- unix
- utf8-string
- optparse-applicative
ghc-options: -Wall -Werror
library:
source-dirs: src
executables:
vaultenv:
main: Main.hs
source-dirs: app
dependencies:
- vaultenv
tests:
vaultenv-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- vaultenv
- hspec
- hspec-discover
- hspec-expectations
- directory