rotating-log/rotating-log.cabal
Ozgun Ataman 5d6c72d6b1 Remove upper bounds from deps
as we rely on some very fundamental and stable packages that are
unlikely to change in API upon version bumps.
2013-10-04 19:59:21 -04:00

41 lines
1.1 KiB
Text

name: rotating-log
version: 0.1
-- synopsis:
description: Size-limited, concurrent, automatically-rotating log writer for production applications.
license: BSD3
license-file: LICENSE
author: Doug Beardsley
maintainer: doug.beardsley@soostone.com
copyright: Soostone Inc
category: Web
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules:
System.RotatingLog
build-depends:
base >= 4 && < 5,
bytestring >= 0.8,
old-locale >= 1.0,
time >= 1.1,
filepath >= 1.0,
directory >= 1.0
ghc-options: -Wall -fwarn-tabs
executable test-rotate
main-is: TestRotate.hs
hs-source-dirs: test, src
build-depends:
base >= 4,
bytestring >= 0.8,
old-locale >= 1.0,
time >= 1.1,
filepath >= 1.0,
directory >= 1.0
ghc-options: -Wall -fwarn-tabs -threaded