packages feed

salve-1.0.11: salve.cabal

cabal-version: >= 1.10

name: salve
version: 1.0.11

synopsis: Semantic version numbers and constraints.
description:
  Salve provides semantic version (SemVer) numbers and constraints (ranges).

build-type: Simple
category: Distribution
extra-source-files: README.markdown
license-file: LICENSE.markdown
license: MIT
maintainer: Taylor Fausak

source-repository head
  location: https://github.com/tfausak/salve
  type: git

library
  build-depends:
    base >= 4.13.0 && < 4.16
  default-language: Haskell2010
  exposed-modules:
    Salve
    Salve.Internal
  ghc-options:
    -Weverything
    -Wno-implicit-prelude
    -Wno-missing-deriving-strategies
    -Wno-missing-exported-signatures
    -Wno-safe
  hs-source-dirs: src/lib

  if impl(ghc >= 8.10)
    ghc-options:
      -Wno-missing-safe-haskell-mode
      -Wno-prepositive-qualified-module

test-suite test
  build-depends:
    base -any
    , HUnit >= 1.6.1 && < 1.7
    , salve -any
  default-language: Haskell2010
  hs-source-dirs: src/test
  main-is: Main.hs
  type: exitcode-stdio-1.0