packages feed

diagnostician-terminal-0.2.0.1: diagnostician-terminal.cabal

cabal-version: 3.4
name: diagnostician-terminal
version: 0.2.0.1
license: (Apache-2.0 OR MIT)
maintainer: root@owenlynch.org
author: Coln contributors
description: ANSI terminal rendering backend for Diagnostician
category: Language

source-repository head
  type: git
  location: https://github.com/coln-project/Coln

library
  exposed-modules: Diagnostician.Terminal
  hs-source-dirs: src
  default-language: GHC2024
  default-extensions:
    DuplicateRecordFields
    NoFieldSelectors
    OrPatterns
    OverloadedRecordDot
    OverloadedStrings

  ghc-options:
    -Wall

  build-depends:
    ansi-terminal,
    base ^>=4.21.0.0 || ^>=4.22,
    diagnostician,
    prettyprinter,
    prettyprinter-ansi-terminal,
    text,