-- Initial librato.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                librato
version:             0.2.0.1
synopsis:            Bindings to the Librato API
-- description:         
homepage:            https://github.com/SaneTracker/librato
license:             MIT
license-file:        LICENSE
author:              Ian Duncan
maintainer:          ian@iankduncan.com
-- copyright:           
category:            Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  exposed-modules:     Librato.Types,
                       Librato.Internal,
                       Librato,
                       -- Librato.Alerts,
                       -- Librato.Annotations,
                       -- Librato.ApiTokens,
                       -- Librato.ChartTokens,
                       -- Librato.Dashboards,
                       -- Librato.Instruments,
                       -- Librato.Jobs,
                       Librato.Metrics
                       -- Librato.Services,
                       -- Librato.Sources,
                       -- Librato.Tags,
                       -- Librato.Users
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base < 5,
                       bytestring,
                       http-client,
                       http-conduit,
                       text,
                       aeson,
                       vector,
                       unordered-containers,
                       resourcet,
                       mtl,
                       http-types,
                       attoparsec,
                       uri-templater >= 0.2,
                       either
  hs-source-dirs:      src
  default-language:    Haskell2010