packages feed

failure-detector-0: failure-detector.cabal

name:                failure-detector
version:             0
synopsis:            Failure Detectors implimented in Haskell.
license:             BSD3
license-file:        LICENSE
author:              davean
maintainer:          davean@xkcd.com
copyright:           Copyright (C) 2016 davean
stability:           provisional
category:            Distributed Computing
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10
bug-reports:         oss@xkcd.com

source-repository head
  type: git
  location: http://code.xkrd.net/distributed-systems/failure-detector.git

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  exposed-modules:
        Distributed.Failure.Class
      , Distributed.Failure.Phi
  build-depends:
        base >=4.8 && <4.10
      , time == 1.6.*
      , containers
      , statistics

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             Test.hs
  other-modules:       Distributed.Failure.Test.Properties
  hs-source-dirs:      tests
  default-language:    Haskell2010
  ghc-options:         -Wall
  build-depends:
        failure-detector
      , base
      , time
      , tasty
      , tasty-quickcheck
      , QuickCheck