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

name:                possible
version:             0.1.0.0
cabal-version:       >=1.10
synopsis:            Three valued Data.Maybe
description:         Maybe lacks the information if Nothing represents missing or empty value.
                     The idea is to have http://en.wikipedia.org/wiki/Three-valued_logic for values.
                     Depends on Aeson having "Missing" value.
homepage:            https://github.com/tolysz/possible
license:             BSD3
license-file:        LICENSE
author:              Marcin Tolysz
maintainer:          tolysz@gmail.com
-- copyright:           
category:            Data
build-type:          Simple
extra-source-files:  CHANGES

Stability:           experimental
Source-Repository head
  type: git
  location: https://github.com/tolysz/possible.git

library
  exposed-modules:     Data.Possible
  -- other-modules:       
  -- other-extensions:    
  build-depends: base >=4.7 && <4.8
               , aeson >= 0.8
               , text
  -- hs-source-dirs:      
  default-language:    Haskell2010