packages feed

uid-0.1.0.0: uid.cabal

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

name:                uid
version:             0.1.0.0
synopsis:            Simple unique identifier datatype, serializable and encodable as base32
description:          A simple unique identiier, serializable to binary and JSON, and since
                      base32 is a primary encoding, renders in URLs without any further encoding.
homepage:            http://github.com/hargettp/uid
license:             MIT
license-file:        LICENSE
author:              Phil Hargett
maintainer:          phil@haphazardhouse.net
-- copyright:           
category:            Data
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:     Data.UID
  -- other-modules:       
  build-depends:       base >=4 && < 5,
                       aeson,
                       bytestring,
                       cereal,
                       dataenc,
                       text,
                       uuid

  hs-source-dirs:      src