packages feed

typelits-printf-0.1.0.0: typelits-printf.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 01b7ef56880a6dc7f4e5a26769e77a08d5991bae7449cd60415d13c82f17929c

name:           typelits-printf
version:        0.1.0.0
synopsis:       Type-safe printf from parsing GHC TypeLits Symbol
description:    An extensible and type-safe printf from parsing GHC TypeLits Symbol
                literals, matching the semantics of 'P.printf' from "Text.Printf" in /base/.
                The difference is that the variants here will always fail to compile if
                given arguments of the wrong type (or too many or too little arguments).
                Most of the variants also provide useful type feedback, telling you the type
                of arguments it expects and how many when queried with @:t@ or with typed
                holes.
                .
                See README and documentation of "GHC.TypeLits.Printf" for more information
category:       Text
homepage:       https://github.com/mstksg/typelits-printf#readme
bug-reports:    https://github.com/mstksg/typelits-printf/issues
author:         Justin Le
maintainer:     justin@jle.im
copyright:      (c) Justin Le 2019
license:        BSD3
license-file:   LICENSE
tested-with:    GHC >= 8.8 && < 8.10
build-type:     Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/mstksg/typelits-printf

library
  exposed-modules:
      GHC.TypeLits.Printf
      GHC.TypeLits.Printf.Internal
  other-modules:
      GHC.TypeLits.Printf.Internal.Parser
      GHC.TypeLits.Printf.Parse
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Werror=incomplete-patterns
  build-depends:
      base >=4.13 && <5
    , symbols >=0.3 && <0.4
    , text
    , vinyl >=0.12.1
  default-language: Haskell2010