packages feed

align-equal-0.1.0.1: align-equal.cabal

cabal-version: 3.0
name: align-equal
version: 0.1.0.1
license: MIT
license-file: LICENSE
author: Joonkyu Park (based on original work by Gabriella Gonzalez)
build-type: Simple
synopsis: Aligns text prefixes before '=' for consistent formatting
description: A utility to adjust text lines by padding spaces before '=' based on the longest prefix.
category: Text
maintainer: vpark45@gmail.com
extra-doc-files: README.md

source-repository head
  type: darcs
  location: https://hub.darcs.net/vincent/align-equal

common warnings
  ghc-options: -Wall

executable align-equal
  import: warnings
  main-is: Main.hs
  build-depends:
    base >=4.17 && <4.19,
    safe >=0.3.21 && <0.4,
    text >=2.0.2 && <2.1,

  hs-source-dirs: app
  default-language: Haskell2010