cabal-version: 2.4 name: ghc-syntax-highlighter version: 0.0.9.0 x-revision: 2 license: BSD-3-Clause license-file: LICENSE.md maintainer: Mark Karpov author: Mark Karpov tested-with: ghc ==9.0.2 ghc ==9.2.4 ghc ==9.4.1 homepage: https://github.com/mrkkrp/ghc-syntax-highlighter bug-reports: https://github.com/mrkkrp/ghc-syntax-highlighter/issues synopsis: Syntax highlighter for Haskell using the lexer of GHC description: Syntax highlighter for Haskell using the lexer of GHC. category: Text build-type: Simple data-files: data/*.hs extra-doc-files: CHANGELOG.md README.md source-repository head type: git location: https://github.com/mrkkrp/ghc-syntax-highlighter.git flag dev description: Turn on development settings. default: False manual: True library exposed-modules: GHC.SyntaxHighlighter default-language: Haskell2010 build-depends: base >=4.13 && <5.0, ghc-lib-parser >=9.4 && <9.5, text >=0.2 && <2.1 if flag(dev) ghc-options: -Wall -Werror -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wnoncanonical-monad-instances else ghc-options: -O2 -Wall test-suite tests type: exitcode-stdio-1.0 main-is: Spec.hs build-tool-depends: hspec-discover:hspec-discover >=2.0 && <3.0 hs-source-dirs: tests other-modules: GHC.SyntaxHighlighterSpec default-language: Haskell2010 build-depends: base >=4.13 && <5.0, ghc-syntax-highlighter, text >=0.2 && <2.1, hspec >=2.0 && <3.0 if flag(dev) ghc-options: -Wall -Werror else ghc-options: -O2 -Wall