-- Initial cereal-text.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                cereal-text
version:             0.1.0.2
synopsis:            Data.Text instances for the cereal serialization library
description:         Data.Text instances for the cereal serialization library.
                     .
                     Provides instances for Text and lazy Text.
                     Uses UTF-8 encoding for serialization.
                     .
                     Use
                     @import Data.Serialize.Text ()@
                     to import instances.
homepage:            https://github.com/ulikoehler/cereal-text
license:             Apache-2.0
license-file:        LICENSE
author:              Uli Köhler
maintainer:          ukoehler@btronik.de
-- copyright:           
category:            Data
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/ulikoehler/cereal-text

library
  exposed-modules: Data.Serialize.Text
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >= 4.0 && < 6.0, 
                       cereal >= 0.2, 
                       text >= 0.10
  -- hs-source-dirs:      
  default-language:    Haskell2010