forked from mdunnio/hs-vault-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvault-tool.cabal
42 lines (37 loc) · 1.37 KB
/
vault-tool.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
name: vault-tool
version: 0.2.1.0
synopsis: Client library for HashiCorp's Vault tool (via HTTP API)
description: Client library for HashiCorp's Vault tool (via HTTP API)
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,
Network.VaultTool.KeyValueV2,
Network.VaultTool.TOTP
other-modules: Network.VaultTool.Internal,
Network.VaultTool.Types,
Data.Aeson.Utils
build-depends: base >=4.8 && < 5,
text,
bytestring,
http-client,
http-types,
http-client-tls,
aeson >=2.2,
unordered-containers,
time
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall