packages feed

bimap-server-0.1.0.0: bimap-server.cabal

name:                bimap-server
version:             0.1.0.0
synopsis:            Two-column database server.
description:         A server that stores a database with two columns, where the elements in each column are of the same type.
                     Operations are fast, although memory usage increases with the number of rows. The implementation is based
                     in bimaps.
license:             BSD3
license-file:        LICENSE
author:              Daniel Díaz
maintainer:          dhelta.diaz@gmail.com
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules: Data.Bimap.Server
  other-extensions: OverloadedStrings, ScopedTypeVariables
  build-depends: base == 4.*
               , binary
               , bimap
               , wai
               , warp
               , http-types
               , aeson >= 0.9
               , unix
               , directory
  default-language: Haskell2010