1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
name: exceptions
category: Control, Exceptions, Monad
version: 0.6.1
cabal-version: >= 1.8
license: BSD3
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: provisional
homepage: http://github.com/ekmett/exceptions/
bug-reports: http://github.com/ekmett/exceptions/issues
copyright: Copyright (C) 2013-2014 Edward A. Kmett
Copyright (C) 2012 Google Inc.
build-type: Simple
tested-with: GHC == 7.4.1, GHC == 7.6.1, GHC == 7.8.2
synopsis: Extensible optionally-pure exceptions
description: Extensible optionally-pure exceptions
extra-source-files:
.travis.yml
.ghci
.gitignore
.vim.custom
travis/cabal-apt-install
travis/config
AUTHORS.markdown
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: git://github.com/ekmett/exceptions.git
library
build-depends:
base >= 4.3 && < 5,
transformers >= 0.2 && < 0.5,
mtl >= 2.0 && < 2.3
exposed-modules:
Control.Monad.Catch
Control.Monad.Catch.Pure
ghc-options: -Wall -fwarn-tabs -O2
hs-source-dirs: src
test-suite exceptions-tests
main-is: Tests.hs
other-modules: Control.Monad.Catch.Tests
hs-source-dirs: src, tests
ghc-options: -Wall -fwarn-tabs
type: exitcode-stdio-1.0
build-depends:
base,
transformers,
mtl,
test-framework >= 0.8 && < 0.9,
test-framework-quickcheck2 >= 0.3 && < 0.4,
QuickCheck >= 2.5 && < 2.8
|