-- Initial simple-balancer.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: roundRobin version: 0.1.2.0 synopsis: A simple round-robin data type description: This package provide a simple data type wrap a round-robin table. so you can select resources(host, connection...) using round-robin fashion. license: MIT license-file: LICENSE author: winterland1989 maintainer: winterland1989@gmail.com -- copyright: category: Concurrency build-type: Simple extra-source-files: README.md cabal-version: >=1.10 source-repository head type: git location: https://github.com/winterland1989/roundRobin.git library exposed-modules: Data.RoundRobin -- other-modules: -- other-extensions: build-depends: base >=4.6 && <5.0 , semigroups -- hs-source-dirs: default-language: Haskell2010 test-suite test type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: test build-depends: roundRobin , base , QuickCheck , tasty , tasty-quickcheck , semigroups default-language: Haskell2010