packages feed

decode-utf8-1.1: decode-utf8.cabal

name: decode-utf8
version: 1.1
category: Text
synopsis: Decode a UTF-8 byte stream on standard input
license: MIT
license-file: LICENSE
cabal-version: >= 1.8.0.2
build-type: Simple
author: Joe Leslie-Hurd <joe@gilith.com>
maintainer: Joe Leslie-Hurd <joe@gilith.com>
description:
  This package implements a simple utility to decode a UTF-8 byte stream
  fed in on standard input, displaying the valid Unicode characters read
  and the invalid bytes.

executable decode-utf8
  build-depends:
    base >= 4.0 && < 5.0,
    opentheory-unicode >= 1.0 && < 2.0,
    api-opentheory-unicode >= 1.0 && < 2.0
  hs-source-dirs: src
  ghc-options: -Wall
  main-is: Main.hs