packages feed

cabal-install-parsers-0.3: cabal-install-parsers.cabal

cabal-version:      2.2
name:               cabal-install-parsers
version:            0.3
synopsis:           Utilities to work with cabal-install files
description:
  @cabal-install-parsers@ provides parsers for @cabal-install@ files:
  @cabal.project@ ("Cabal.Project"),
  @cabal.config@ ("Cabal.Config"),
  @01-index.tar@ ("Cabal.Index");
  as well as some other utilities.
  .
  The feature set is mainly motivated by the needs of @haskell-ci@ package.
  The parsed data is not complete, functionality is added on demand.

homepage:           https://haskell-ci.rtfd.org/
bug-reports:        https://github.com/haskell-CI/haskell-ci/issues
license:            GPL-2.0-or-later AND BSD-3-Clause
license-files:      LICENSE LICENSE.GPLv2 LICENSE.GPLv3
author:             Herbert Valerio Riedel, Oleg Grenrus
maintainer:         hvr@gnu.org, oleg.grenrus@iki.fi
category:           Development
build-type:         Simple
tested-with:        GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1
extra-source-files:
  Changelog.md
  fixtures/*.project
  fixtures/*.golden

source-repository head
  type:     git
  location: https://github.com/haskell-CI/haskell-ci.git

library
  default-language: Haskell2010
  ghc-options:      -Wall -Wcompat -Wnoncanonical-monad-instances
  hs-source-dirs:   src
  exposed-modules:
    Cabal.Config
    Cabal.Index
    Cabal.Optimization
    Cabal.Package
    Cabal.Parse
    Cabal.Project
    Cabal.SourceRepo

  other-modules:
    Cabal.Internal.Glob
    Cabal.Internal.Newtypes

  -- GHC-boot libraries
  build-depends:
    , base          >=4.10     && <4.15
    , binary        ^>=0.8.5
    , bytestring    ^>=0.10.8.1
    , Cabal         ^>=3.2.0.0
    , containers    ^>=0.5.7.1 || ^>=0.6.0.1
    , deepseq       ^>=1.4.2.0
    , directory     ^>=1.3.0.0
    , filepath      ^>=1.4.1.1
    , parsec        ^>=3.1.13.0
    , pretty        ^>=1.1.3.3
    , text          ^>=1.2.3.0
    , time          ^>=1.8.0.2  || ^>=1.9.3
    , transformers  ^>=0.5.2.0

  -- extra dependencies
  build-depends:
    , aeson                 ^>=1.4.6.0
    , base16-bytestring     ^>=0.1.1.6
    , binary-instances      ^>=1
    , cryptohash-sha256     ^>=0.11.101.0
    , lukko                 ^>=0.1.1
    , network-uri           ^>=2.6.1.0
    , tar                   ^>=0.5.1.1

  if !impl(ghc >=8.2)
    build-depends: bifunctors ^>=5.5.4

test-suite cabal-parsers-index
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Index.hs
  hs-source-dirs:   test

  -- inherited constraints
  build-depends:
    , base
    , Cabal
    , cabal-install-parsers
    , containers

  -- dependencies needing explicit constraints
  build-depends:
    , tasty        ^>=1.2.3
    , tasty-hunit  ^>=0.10.0.2

test-suite cabal-parsers-golden
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Golden.hs
  hs-source-dirs:   test

  -- inherited constraints
  build-depends:
    , base
    , bytestring
    , Cabal
    , cabal-install-parsers
    , containers
    , directory
    , filepath
    , pretty

  -- dependencies needing explicit constraints
  build-depends:
    , ansi-terminal  ^>=0.10
    , tasty          ^>=1.2.3
    , tasty-golden   ^>=2.3.1.1
    , tree-diff      ^>=0.1

benchmark cabal-parsers-bench
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Bench.hs
  hs-source-dirs:   bench

  -- inherited constraints
  build-depends:
    , base
    , bytestring
    , Cabal
    , cabal-install-parsers
    , containers
    , directory
    , filepath

  -- dependencies needing explicit constraints
  build-depends:
    , criterion ^>=1.5.6.1