cabal-version: 3.0 name: cloudflare-api version: 0.1.0.0 synopsis: Haskell bindings for the Cloudflare API description: Haskell interface to the Cloudflare API using auth tokens and the Cloudflare API v4. license: MIT license-file: LICENSE author: Kevin Cotrone maintainer: kevincotrone@gmail.com category: Web -- copyright: build-type: Simple extra-doc-files: CHANGELOG.md -- extra-source-files: common warnings ghc-options: -Wall library import: warnings exposed-modules: Network.Cloudflare.DNS.DNSSEC Network.Cloudflare.DNS.Record Network.Cloudflare.Types Network.Cloudflare.Zone -- other-modules: -- other-extensions: hs-source-dirs: src default-language: Haskell2010 build-depends: base ^>= 4.16 , aeson >= 2.2.0 && < 2.3 , bytestring >= 0.11.4 && < 0.12 , http-client >= 0.7.14 && < 0.8 , iproute >= 1.7.12 && < 1.8 , lens >= 5.2.3 && < 5.3 , text >= 1.2.5 && < 1.3 , time >= 1.11.1 && < 1.12 , wreq >= 0.5.4 && < 0.6 test-suite cloudflare-api-test import: warnings default-language: Haskell2010 other-modules: Test.Cloudflare.DNS.Record Test.Cloudflare.DNS.DNSSEC -- other-extensions: type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs build-depends: base ^>= 4.16 , aeson >= 2.2.0 && < 2.3 , asn1-types >= 0.3.4 && < 0.4 , base64 >= 0.4.2 && < 0.5 , binary >= 0.8.9 && < 0.9 , bytestring >= 0.11.4 && < 0.12 , case-insensitive >= 1.2.1 && < 1.3 , cloudflare-api , crypton >= 0.33 && < 0.34 , crypton-x509 >= 1.7.6 && < 1.8 , dns >= 4.2.0 && < 4.3 , hourglass >= 0.2.12 && < 0.3 , iproute >= 1.7.12 && < 1.8 , memory >= 0.18.0 && < 0.19 , monad-loops >= 0.4.3 && < 0.5 , process >= 1.6.16 && < 1.7 , random >= 1.2.1 && < 1.3 , tasty >= 1.5 && < 1.6 , tasty-hunit >= 0.10.1 && < 0.11 , text >= 1.2.5 && < 1.3 source-repository head type: git location: https://code.xkrd.net/haskell/cloudflare-api.git