xrefcheck 0.1.1.1 → 0.1.1.2
raw patch · 3 files changed
+199/−183 lines, 3 filesdep +basedep −base-nopreludedep ~Globdep ~QuickCheckdep ~aeson
Dependencies added: base
Dependencies removed: base-noprelude
Dependency ranges changed: Glob, QuickCheck, aeson, aeson-options, async, bytestring, cmark-gfm, containers, data-default, deepseq, directory, directory-tree, filepath, fmt, hspec, http-client, http-types, lens, mtl, o-clock, optparse-applicative, pretty-terminal, req, roman-numerals, template-haskell, text, text-metrics, th-lift-instances, th-utilities, universum, with-utf8, yaml
Files
- CHANGES.md +5/−0
- src/Xrefcheck/Scanners.hs +6/−2
- xrefcheck.cabal +188/−181
CHANGES.md view
@@ -7,6 +7,11 @@ Unreleased ========== +0.1.1.2+=======++* [#34](https://github.com/serokell/xrefcheck/pull/34)+ + Do not depend on `autoexporter` and `base-noprelude`. 0.1.1.1 =======
src/Xrefcheck/Scanners.hs view
@@ -1,6 +1,10 @@-{- SPDX-FileCopyrightText: 2018-2019 Serokell <https://serokell.io>+{- SPDX-FileCopyrightText: 2018-2020 Serokell <https://serokell.io> - - SPDX-License-Identifier: MPL-2.0 -} -{-# OPTIONS_GHC -F -pgmF autoexporter #-}+module Xrefcheck.Scanners+ ( module Xrefcheck.Scanners.Markdown+ ) where++import Xrefcheck.Scanners.Markdown
xrefcheck.cabal view
@@ -1,194 +1,201 @@ cabal-version: 2.0---- This file has been generated from package.yaml by hpack version 0.31.2.------ see: https://github.com/sol/hpack------ hash: d06022dafc7e1571ee991e3df05921dc1e1156c72444ec3375d9ec25c52b5bfc--name: xrefcheck-version: 0.1.1.1-description: Please see the README on GitHub at <https://github.com/serokell/xrefcheck#readme>-homepage: https://github.com/serokell/xrefcheck#readme-bug-reports: https://github.com/serokell/xrefcheck/issues-author: Kostya Ivanov, Serokell-maintainer: Serokell <hi@serokell.io>-copyright: 2018-2019 Serokell <https://serokell.io>-license: MPL-2.0-license-file: LICENSE-build-type: Simple+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+ 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- other-modules:- Paths_xrefcheck- autogen-modules:- Paths_xrefcheck- hs-source-dirs:- src- 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-tool-depends:- autoexporter:autoexporter- build-depends:- Glob- , aeson- , aeson-options- , async- , base-noprelude- , bytestring- , cmark-gfm- , containers- , data-default- , deepseq- , directory- , directory-tree- , filepath- , fmt- , http-client- , http-types- , lens- , mtl- , o-clock- , optparse-applicative- , pretty-terminal- , req- , roman-numerals- , template-haskell- , text- , text-metrics- , th-lift-instances- , th-utilities- , universum- , with-utf8- , yaml- mixins:- universum (Universum as Prelude)- , universum (Universum.Unsafe as Unsafe)- default-language: Haskell2010+ 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- other-modules:- Paths_xrefcheck- autogen-modules:- Paths_xrefcheck- hs-source-dirs:- exec- 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-tool-depends:- autoexporter:autoexporter- build-depends:- Glob- , aeson- , aeson-options- , async- , base-noprelude- , bytestring- , cmark-gfm- , containers- , data-default- , deepseq- , directory- , directory-tree- , filepath- , fmt- , http-client- , http-types- , lens- , mtl- , o-clock- , optparse-applicative- , pretty-terminal- , req- , roman-numerals- , template-haskell- , text- , text-metrics- , th-lift-instances- , th-utilities- , universum- , with-utf8- , xrefcheck- , yaml- mixins:- universum (Universum as Prelude)- , universum (Universum.Unsafe as Unsafe)- default-language: Haskell2010+ 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- other-modules:- Spec- Test.Xrefcheck.AnchorsSpec- Test.Xrefcheck.ConfigSpec- Test.Xrefcheck.LocalSpec- Paths_xrefcheck- autogen-modules:- Paths_xrefcheck- hs-source-dirs:- tests- 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-tool-depends:- autoexporter:autoexporter- , hspec-discover:hspec-discover- build-depends:- Glob- , QuickCheck- , aeson- , aeson-options- , async- , base-noprelude- , bytestring- , cmark-gfm- , containers- , data-default- , deepseq- , directory- , directory-tree- , filepath- , fmt- , hspec- , http-client- , http-types- , lens- , mtl- , o-clock- , optparse-applicative- , pretty-terminal- , req- , roman-numerals- , template-haskell- , text- , text-metrics- , th-lift-instances- , th-utilities- , universum- , with-utf8- , xrefcheck- , yaml- mixins:- universum (Universum as Prelude)- , universum (Universum.Unsafe as Unsafe)- default-language: Haskell2010+ 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)