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
|
cabal-version: 1.12
name: casa-client
synopsis: Client for Casa
description: Client for Casa <https://casa.fpcomplete.com/>
version: 0.0.2
copyright: 2018-2019 FP Complete
author: Chris Done
maintainer: chrisdone@fpcomplete.com
license: BSD3
license-file: LICENSE
category: Development
build-type: Simple
library
exposed-modules:
Casa.Client
other-modules: Paths_casa_client
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >= 4.5 && < 5
, bytestring
, base16-bytestring
, conduit-extra
, conduit
, text
, http-conduit
, exceptions
, casa-types
, resourcet
, http-types
, unordered-containers
, attoparsec
, unliftio-core
, crypton
, memory
, network-uri
, aeson
, th-lift
, template-haskell
|