packages feed

prometheus-0.1.0.3: prometheus.cabal

name:                prometheus
version:             0.1.0.3
synopsis:            Prometheus Haskell Client
description:         Idiomatic Haskell client for Prometheus.io monitoring.
homepage:            http://github.com/LukeHoersten/prometheus#readme
license:             BSD3
license-file:        LICENSE
author:              Luke Hoersten
maintainer:          luke@hoersten.org
copyright:           All Rights Reserved
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  default-language:    Haskell2010

  exposed-modules: System.Metrics.Prometheus.Encode
                 , System.Metrics.Prometheus.Encode.Histogram
                 , System.Metrics.Prometheus.Encode.MetricId
                 , System.Metrics.Prometheus.GlobalRegistry
                 , System.Metrics.Prometheus.Http
                 , System.Metrics.Prometheus.Metric
                 , System.Metrics.Prometheus.Metric.Counter
                 , System.Metrics.Prometheus.Metric.Gauge
                 , System.Metrics.Prometheus.Metric.Histogram
                 , System.Metrics.Prometheus.Metric.Summary
                 , System.Metrics.Prometheus.MetricId
                 , System.Metrics.Prometheus.Registry
                 , System.Metrics.Prometheus.RegistryT

  build-depends: atomic-primops >= 0.8  && < 0.9
               , base           >= 4.7  && < 5.0
               , bytestring     >= 0.10 && < 0.11
               , containers     >= 0.5  && < 0.6
               , http-types     >= 0.9  && < 0.10
               , mtl            >= 2.2  && < 2.3
               , text           >= 1.2  && < 1.3
               , transformers   >= 0.4  && < 0.5
               , wai            >= 3.2  && < 3.3
               , warp           >= 3.2  && < 3.3

source-repository head
  type:     git
  location: https://github.com/LukeHoersten/prometheus