-
Notifications
You must be signed in to change notification settings - Fork 2
/
gothic.cabal
51 lines (47 loc) · 2.31 KB
/
gothic.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
name: gothic
version: 0.1.8.2
synopsis: A Haskell Vault KVv2 secret engine client
description: A Haskell HashiCorp Vault KVv2 secret engine client library
homepage: https://github.com/MichelBoucey/gothic
license: BSD3
license-file: LICENSE
author: Michel Boucey
maintainer: michel.boucey@gmail.com
copyright: (c) 2019-2024 - Michel Boucey
category: DevOps, Security, Database
build-type: Simple
cabal-version: >=1.10
extra-source-files: ReadMe.md
Tested-With: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2 || ==9.10.1
Source-Repository head
Type: git
Location: https://github.com/MichelBoucey/gothic
library
hs-source-dirs: src/
exposed-modules: Database.Vault.KVv2.Client
, Database.Vault.KVv2.Client.Internal
, Database.Vault.KVv2.Client.Lens
, Database.Vault.KVv2.Client.Requests
, Database.Vault.KVv2.Client.Types
other-extensions: OverloadedStrings
build-depends: aeson >= 2.0 && < 2.3
, base >= 4.8.1.0 && < 5
, binary >= 0.8.5.1 && < 0.9
, connection >= 0.2.8 && < 0.4
, exceptions >= 0.10.0 && < 0.11
, hashable >= 1.4.3 && < 1.5
, http-conduit >= 2.3.2 && < 2.4
, http-client >= 0.5.13.1 && < 0.8
, http-client-tls >= 0.3.5.3 && < 0.4
, http-types >= 0.12.2 && < 0.13
, bytestring >= 0.10.8.2 && < 0.13
, http-conduit >= 2.3.2 && < 2.4
, text >= 1.2.3 && < 2.3
, unordered-containers >= 0.2.9.0 && < 0.3
, lens >= 5.0 && < 6
, lens-aeson >= 1.2 && < 1.3
, scientific >= 0.3.6.2 && < 0.4
, unix >= 2.7.2.2 && < 2.9
, vector >= 0.12.0.1 && < 0.14
default-language: Haskell2010
GHC-Options: -Wall