packages feed

salve-2.0.0.6: salve.cabal

cabal-version: 2.2
name: salve
version: 2.0.0.6
synopsis: Semantic version numbers and constraints.
description:
  Salve provides semantic version (SemVer) numbers and constraints (ranges).

build-type: Simple
category: Distribution
extra-doc-files:
  CHANGELOG.md
  README.md

license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak

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

flag pedantic
  default: False
  manual: True

common library
  build-depends: base ^>=4.19.0.0 || ^>=4.20.0.0 || ^>=4.21.0.0
  default-language: Haskell2010
  ghc-options:
    -Weverything
    -Wno-all-missed-specialisations
    -Wno-implicit-prelude
    -Wno-missing-deriving-strategies
    -Wno-missing-exported-signatures
    -Wno-missing-kind-signatures
    -Wno-missing-safe-haskell-mode
    -Wno-prepositive-qualified-module
    -Wno-safe

  if flag(pedantic)
    ghc-options: -Werror

common executable
  import: library
  build-depends: salve
  ghc-options:
    -rtsopts
    -threaded
    -Wno-unused-packages

library
  import: library
  -- cabal-gild: discover source/library
  exposed-modules:
    Salve
    Salve.Internal

  hs-source-dirs: source/library

test-suite salve-test-suite
  import: executable
  build-depends:
    HUnit ^>=1.6.2.0

  hs-source-dirs: source/test-suite
  main-is: Main.hs
  type: exitcode-stdio-1.0