forked from bitc/hs-vault-tool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvault-tool-server.cabal
49 lines (43 loc) · 1.53 KB
/
vault-tool-server.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
name: vault-tool-server
version: 0.0.0.3
synopsis: Utility library for spawning a HashiCorp Vault process
description: Utility library for spawning a HashiCorp Vault process
license: MIT
license-file: LICENSE
author: Bit Connor
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
cabal-version: >=1.10
homepage: https://github.com/bitc/hs-vault-tool
bug-reports: https://github.com/bitc/hs-vault-tool/issues
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/bitc/hs-vault-tool.git
library
exposed-modules: Network.VaultTool.VaultServerProcess
build-depends: base >=4.8 && <4.11,
vault-tool,
aeson,
async,
bytestring,
filepath,
http-client,
process >= 1.2.0.0,
temporary,
text
hs-source-dirs: src
default-language: Haskell2010
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
build-depends: base >=4.8 && <4.11,
vault-tool,
vault-tool-server,
aeson,
tasty-hunit,
temporary