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
|
cabal-version: >= 1.10
name: assert-failure
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:+-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.3.0
synopsis: Syntactic sugar improving 'assert' and 'error'
description: This library contains syntactic sugar that makes it easier
to write simple contracts with 'assert' and 'error'
and report the values that violate contracts.
homepage: https://github.com/Mikolaj/assert-failure
bug-reports: https://github.com/Mikolaj/assert-failure/issues
license: BSD3
license-file: LICENSE
tested-with: GHC ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.3 || ==9.4 || ==9.6
data-files: LICENSE, README.md
author: Mikolaj Konarski
maintainer: Mikolaj Konarski <mikolaj.konarski@funktory.com>
category: Control, Contract
build-type: Simple
source-repository head
type: git
location: git://github.com/Mikolaj/assert-failure.git
library
exposed-modules: Control.Exception.Assert.Sugar
-- other-modules:
build-depends: base >= 4.6 && < 99,
text >= 0.11.2.3,
pretty-show >= 1.6
default-language: Haskell2010
default-extensions: MonoLocalBinds, ScopedTypeVariables, OverloadedStrings
BangPatterns, RecordWildCards, NamedFieldPuns, MultiWayIf,
LambdaCase, DefaultSignatures, InstanceSigs,
PatternSynonyms
-- TODO: more, after old GHCs dropped
other-extensions: RankNTypes
ghc-options: -Wall -fwarn-orphans -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-implicit-prelude -fwarn-identities
-- TODO: more, after old GHCs dropped
ghc-options: -fno-ignore-asserts
|