packages feed

Cabal revisions of text-manipulate-0.1.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-name:                  text-manipulate-version:               0.1.0-synopsis:              Textual case conversion and word boundary manipulation-homepage:              https://github.com/brendanhay/text-manipulate-license:               OtherLicense-license-file:          LICENSE-author:                Brendan Hay-maintainer:            brendan.g.hay@gmail.com-copyright:             Copyright (c) 2014 Brendan Hay-category:              Data-build-type:            Simple-extra-source-files:    README.md-cabal-version:         >= 1.10--description:-    Manipulate identifiers and structurally non-complex pieces-    of text by delimiting word boundaries via a combination of whitespace,-    control-characters, and case-sensitivity.-    .-    Has support for common idioms like casing of programmatic variable names,-    taking, dropping, and splitting by word, and modifying the first character-    of a piece of text.--source-repository head-    type:     git-    location: git://github.com/brendanhay/text-manipulate.git--library-    default-language:  Haskell2010-    hs-source-dirs:    src-    ghc-options:       -Wall--    exposed-modules:-          Data.Text.Manipulate-        , Data.Text.Lazy.Manipulate--    other-modules:-          Data.Text.Manipulate.Fusion-        , Data.Text.Manipulate.Types--    build-depends:-          base        >= 4.5 && < 5.0-        , text        >= 1.1 && < 1.3-        , text-format >= 0.3--benchmark benchmarks-    type:              exitcode-stdio-1.0-    default-language:  Haskell2010-    main-is:           Main.hs-    hs-source-dirs:    bench-    ghc-options:       -Wall -O2 -threaded -with-rtsopts=-T--    build-depends:-          base-        , criterion       >= 1.0.0.2 && < 1.1-        , text-manipulate-        , text--test-suite tests-    type:              exitcode-stdio-1.0-    default-language:  Haskell2010-    hs-source-dirs:    test-    main-is:           Main.hs-    ghc-options:       -Wall -threaded--    build-depends:-          base-        , text-manipulate-        , tasty           >= 0.8-        , tasty-hunit     >= 0.8-        , text+name:                  text-manipulate
+version:               0.1.0
+x-revision: 1
+synopsis:              Textual case conversion and word boundary manipulation
+homepage:              https://github.com/brendanhay/text-manipulate
+license:               OtherLicense
+license-file:          LICENSE
+author:                Brendan Hay
+maintainer:            brendan.g.hay@gmail.com
+copyright:             Copyright (c) 2014 Brendan Hay
+category:              Data, Text
+build-type:            Simple
+extra-source-files:    README.md
+cabal-version:         >= 1.10
+
+description:
+    Manipulate identifiers and structurally non-complex pieces
+    of text by delimiting word boundaries via a combination of whitespace,
+    control-characters, and case-sensitivity.
+    .
+    Has support for common idioms like casing of programmatic variable names,
+    taking, dropping, and splitting by word, and modifying the first character
+    of a piece of text.
+
+source-repository head
+    type:     git
+    location: git://github.com/brendanhay/text-manipulate.git
+
+library
+    default-language:  Haskell2010
+    hs-source-dirs:    src
+    ghc-options:       -Wall
+
+    exposed-modules:
+          Data.Text.Manipulate
+        , Data.Text.Lazy.Manipulate
+
+    other-modules:
+          Data.Text.Manipulate.Fusion
+        , Data.Text.Manipulate.Types
+
+    build-depends:
+          base        >= 4.5 && < 5.0
+        , text        >= 1.1 && < 1.3
+        , text-format >= 0.3
+
+benchmark benchmarks
+    type:              exitcode-stdio-1.0
+    default-language:  Haskell2010
+    main-is:           Main.hs
+    hs-source-dirs:    bench
+    ghc-options:       -Wall -O2 -threaded -with-rtsopts=-T
+
+    build-depends:
+          base
+        , criterion       >= 1.0.0.2 && < 1.1
+        , text-manipulate
+        , text
+
+test-suite tests
+    type:              exitcode-stdio-1.0
+    default-language:  Haskell2010
+    hs-source-dirs:    test
+    main-is:           Main.hs
+    ghc-options:       -Wall -threaded
+
+    build-depends:
+          base
+        , text-manipulate
+        , tasty           >= 0.8
+        , tasty-hunit     >= 0.8
+        , text