packages feed

vault-tool-0.1.0.0: vault-tool.cabal

name:                vault-tool
version:             0.1.0.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:          mutantlemon@gmail.com
-- 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

  other-modules:       Network.VaultTool.Internal,
                       Network.VaultTool.Types

  build-depends:       base >=4.8 && <4.11,
                       text,
                       bytestring,
                       http-client,
                       http-types,
                       http-client-tls,
                       aeson,
                       unordered-containers

  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall