From fb114f2e8de3c8c55b43740211e70fdc3a6a97e0 Mon Sep 17 00:00:00 2001 From: Bryan O'Sullivan <bos@serpentine.com> Date: Fri, 27 Feb 2009 07:43:07 +0000 Subject: [PATCH] Add README, bump version --HG-- extra : convert_revision : 9924863b519af3250acab479a523c0fc12334eae --- README | 35 +++++++++++++++++++++++++++++++++++ text.cabal | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 README diff --git a/README b/README new file mode 100644 index 00000000..ef14f136 --- /dev/null +++ b/README @@ -0,0 +1,35 @@ +Text: Fast, packed Unicode strings, using stream fusion +------------------------------------------------------- + +This package provides the Data.Text library, a library for the space- +and time-efficient manipulation of Unicode text in Haskell. + + +Normalization, conversion, and collation, oh my! +------------------------------------------------ + +This library intentionally provides a simple API based on the Haskell +prelude's list manipulation functions. For more complicated +real-world tasks, such as Unicode normalization, conversion to and +from a larger variety of encodings, and collation, use the text-icu +package: + + http://hackage.haskell.org/cgi-bin/hackage-scripts/package/text-icu + +That library uses the well-respected and liberally licensed ICU +library to provide these facilities. + + +Source code +----------- + +darcs get http://code.haskell.org/text + + +Authors +------- + +The base code for this library was originally written by Tom Harper, +based on the stream fusion framework developed by Roman Leshchinskiy, +Duncan Coutts, and Don Stewart. The core library was fleshed out, +debugged, and tested by Bryan O'Sullivan. diff --git a/text.cabal b/text.cabal index 80532fb6..50330d41 100644 --- a/text.cabal +++ b/text.cabal @@ -1,5 +1,5 @@ name: text -version: 0.0 +version: 0.1 synopsis: An efficient packed Unicode text type description: An efficient packed Unicode text type. license: BSD3 -- GitLab