name:                LambdaDB
version:             0.0.0.6
synopsis:            On-memory Database using Lambda Function environment.
description:         Please see README.md
homepage:            https://github.com/ailrun/LambdaDB/blob/master/README.md
license:             BSD3
license-file:        LICENSE
author:              Junyoung Clare Jang
maintainer:          jjc9310@gmail.com
copyright:           2016 Junyoung Clare Jang
category:            Database
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Lib
                     , Database.LambdaDB
                     , Database.LambdaDB.Command
                     , Database.LambdaDB.DBType
                     , Database.LambdaDB.DataType
  build-depends:       base >= 4.7 && < 5
                     , containers
                     , transformers
  default-language:    Haskell2010

executable LambdaDB-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , LambdaDB
  default-language:    Haskell2010

test-suite LambdaDB-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , QuickCheck
                     , LambdaDB
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/ailrun/LambdaDB