loglevel-0.1.0.0: loglevel.cabal
name: loglevel
version: 0.1.0.0
synopsis: Log Level Datatype
description:
The package provides a LogLevel type for defining logging callbacks without
depending on a particular logging framework.
homepage: https://github.com/larskuhtz/loglevel
bug-reports: https://github.com/larskuhtz/loglevel/issues
license: MIT
license-file: LICENSE
author: Lars Kuhtz
maintainer: lakuhtz@gmail.com
copyright: Copyright (C) 2018 Lars Kuhtz <lakuhtz@gmail.com>
category: System
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with:
GHC == 8.4.3
, GHC == 8.2.2
, GHC == 8.0.2
, GHC == 7.10.3
extra-source-files:
ChangeLog.md
README.md
.travis.yml
source-repository head
type: git
location: https://github.com/larskuhtz/loglevel
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: System.LogLevel
build-depends:
base >=4.7 && <5.0
, text >= 1.0
, deepseq >= 1.4
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall
main-is: Tests.hs
build-depends:
loglevel
, base >=4.7 && <5.0
, text >= 1.0