packages feed

xrefcheck-0.1.1.2: xrefcheck.cabal

cabal-version: 2.0
name: xrefcheck
version: 0.1.1.2
license: MPL-2.0
license-file: LICENSE
copyright: 2018-2019 Serokell <https://serokell.io>
maintainer: Serokell <hi@serokell.io>
author: Kostya Ivanov, Serokell
homepage: https://github.com/serokell/xrefcheck#readme
bug-reports: https://github.com/serokell/xrefcheck/issues
description:
    Please see the README on GitHub at <https://github.com/serokell/xrefcheck#readme>
build-type: Simple
extra-source-files:
    README.md
    CHANGES.md
    src-files/def-config.yaml

source-repository head
    type: git
    location: https://github.com/serokell/xrefcheck

library
    exposed-modules:
        Xrefcheck.CLI
        Xrefcheck.Config
        Xrefcheck.Core
        Xrefcheck.Progress
        Xrefcheck.Scan
        Xrefcheck.Scanners
        Xrefcheck.Scanners.Markdown
        Xrefcheck.System
        Xrefcheck.Util
        Xrefcheck.Verify
    hs-source-dirs: src
    other-modules:
        Paths_xrefcheck
    autogen-modules:
        Paths_xrefcheck
    default-language: Haskell2010
    default-extensions: AllowAmbiguousTypes BangPatterns
                        ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable
                        DeriveGeneric FlexibleContexts FlexibleInstances
                        FunctionalDependencies GeneralizedNewtypeDeriving LambdaCase
                        MonadFailDesugaring MultiParamTypeClasses MultiWayIf NamedFieldPuns
                        OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables
                        StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
                        UndecidableInstances ViewPatterns TypeApplications TypeOperators
    ghc-options: -Wall -Wincomplete-record-updates
    build-depends:
        Glob >=0.10.0 && <0.11,
        aeson >=1.4.6.0 && <1.5,
        aeson-options >=0.1.0 && <0.2,
        async >=2.2.2 && <2.3,
        base >=4.12.0.0 && <4.13,
        bytestring >=0.10.8.2 && <0.11,
        cmark-gfm >=0.2.1 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default >=0.7.1.1 && <0.8,
        deepseq >=1.4.4.0 && <1.5,
        directory >=1.3.3.0 && <1.4,
        directory-tree >=0.12.1 && <0.13,
        filepath >=1.4.2.1 && <1.5,
        fmt >=0.6.1.2 && <0.7,
        http-client >=0.6.4 && <0.7,
        http-types >=0.12.3 && <0.13,
        lens >=4.17.1 && <4.18,
        mtl >=2.2.2 && <2.3,
        o-clock >=1.1.0 && <1.2,
        optparse-applicative >=0.14.3.0 && <0.15,
        pretty-terminal >=0.1.0.0 && <0.2,
        req >=2.1.0 && <2.2,
        roman-numerals >=0.5.1.5 && <0.6,
        template-haskell >=2.14.0.0 && <2.15,
        text >=1.2.3.1 && <1.3,
        text-metrics >=0.3.0 && <0.4,
        th-lift-instances >=0.1.14 && <0.2,
        th-utilities >=0.2.3.1 && <0.3,
        universum >=1.5.0 && <1.6,
        with-utf8 >=1.0.0.0 && <1.1,
        yaml >=0.11.2.0 && <0.12
    mixins: base hiding (Prelude),
            universum (Universum as Prelude),
            universum (Universum.Unsafe as Unsafe)

executable xrefcheck
    main-is: Main.hs
    hs-source-dirs: exec
    other-modules:
        Paths_xrefcheck
    autogen-modules:
        Paths_xrefcheck
    default-language: Haskell2010
    default-extensions: AllowAmbiguousTypes BangPatterns
                        ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable
                        DeriveGeneric FlexibleContexts FlexibleInstances
                        FunctionalDependencies GeneralizedNewtypeDeriving LambdaCase
                        MonadFailDesugaring MultiParamTypeClasses MultiWayIf NamedFieldPuns
                        OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables
                        StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
                        UndecidableInstances ViewPatterns TypeApplications TypeOperators
    ghc-options: -Wall -Wincomplete-record-updates -threaded -rtsopts
                 -with-rtsopts=-N -O2
    build-depends:
        Glob >=0.10.0 && <0.11,
        aeson >=1.4.6.0 && <1.5,
        aeson-options >=0.1.0 && <0.2,
        async >=2.2.2 && <2.3,
        base >=4.12.0.0 && <4.13,
        bytestring >=0.10.8.2 && <0.11,
        cmark-gfm >=0.2.1 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default >=0.7.1.1 && <0.8,
        deepseq >=1.4.4.0 && <1.5,
        directory >=1.3.3.0 && <1.4,
        directory-tree >=0.12.1 && <0.13,
        filepath >=1.4.2.1 && <1.5,
        fmt >=0.6.1.2 && <0.7,
        http-client >=0.6.4 && <0.7,
        http-types >=0.12.3 && <0.13,
        lens >=4.17.1 && <4.18,
        mtl >=2.2.2 && <2.3,
        o-clock >=1.1.0 && <1.2,
        optparse-applicative >=0.14.3.0 && <0.15,
        pretty-terminal >=0.1.0.0 && <0.2,
        req >=2.1.0 && <2.2,
        roman-numerals >=0.5.1.5 && <0.6,
        template-haskell >=2.14.0.0 && <2.15,
        text >=1.2.3.1 && <1.3,
        text-metrics >=0.3.0 && <0.4,
        th-lift-instances >=0.1.14 && <0.2,
        th-utilities >=0.2.3.1 && <0.3,
        universum >=1.5.0 && <1.6,
        with-utf8 >=1.0.0.0 && <1.1,
        xrefcheck -any,
        yaml >=0.11.2.0 && <0.12
    mixins: base hiding (Prelude),
            universum (Universum as Prelude),
            universum (Universum.Unsafe as Unsafe)

test-suite xrefcheck-tests
    type: exitcode-stdio-1.0
    main-is: Main.hs
    build-tool-depends: hspec-discover:hspec-discover -any
    hs-source-dirs: tests
    other-modules:
        Spec
        Test.Xrefcheck.AnchorsSpec
        Test.Xrefcheck.ConfigSpec
        Test.Xrefcheck.LocalSpec
        Paths_xrefcheck
    autogen-modules:
        Paths_xrefcheck
    default-language: Haskell2010
    default-extensions: AllowAmbiguousTypes BangPatterns
                        ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable
                        DeriveGeneric FlexibleContexts FlexibleInstances
                        FunctionalDependencies GeneralizedNewtypeDeriving LambdaCase
                        MonadFailDesugaring MultiParamTypeClasses MultiWayIf NamedFieldPuns
                        OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables
                        StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
                        UndecidableInstances ViewPatterns TypeApplications TypeOperators
    ghc-options: -Wall -Wincomplete-record-updates
    build-depends:
        Glob >=0.10.0 && <0.11,
        QuickCheck >=2.13.2 && <2.14,
        aeson >=1.4.6.0 && <1.5,
        aeson-options >=0.1.0 && <0.2,
        async >=2.2.2 && <2.3,
        base >=4.12.0.0 && <4.13,
        bytestring >=0.10.8.2 && <0.11,
        cmark-gfm >=0.2.1 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default >=0.7.1.1 && <0.8,
        deepseq >=1.4.4.0 && <1.5,
        directory >=1.3.3.0 && <1.4,
        directory-tree >=0.12.1 && <0.13,
        filepath >=1.4.2.1 && <1.5,
        fmt >=0.6.1.2 && <0.7,
        hspec >=2.7.1 && <2.8,
        http-client >=0.6.4 && <0.7,
        http-types >=0.12.3 && <0.13,
        lens >=4.17.1 && <4.18,
        mtl >=2.2.2 && <2.3,
        o-clock >=1.1.0 && <1.2,
        optparse-applicative >=0.14.3.0 && <0.15,
        pretty-terminal >=0.1.0.0 && <0.2,
        req >=2.1.0 && <2.2,
        roman-numerals >=0.5.1.5 && <0.6,
        template-haskell >=2.14.0.0 && <2.15,
        text >=1.2.3.1 && <1.3,
        text-metrics >=0.3.0 && <0.4,
        th-lift-instances >=0.1.14 && <0.2,
        th-utilities >=0.2.3.1 && <0.3,
        universum >=1.5.0 && <1.6,
        with-utf8 >=1.0.0.0 && <1.1,
        xrefcheck -any,
        yaml >=0.11.2.0 && <0.12
    mixins: base hiding (Prelude),
            universum (Universum as Prelude),
            universum (Universum.Unsafe as Unsafe)