packages feed

greskell-core-0.1.0.0: greskell-core.cabal

name:                   greskell-core
version:                0.1.0.0
author:                 Toshio Ito <debug.ito@gmail.com>
maintainer:             Toshio Ito <debug.ito@gmail.com>
license:                BSD3
license-file:           LICENSE
synopsis:               Haskell binding for Gremlin graph query language - core data types and tools
description:            Haskell binding for [Gremlin graph query language](http://tinkerpop.apache.org/gremlin.html).
                        See [README.md](https://github.com/debug-ito/greskell/blob/master/README.md) for detail.
                        .
                        This package contains only core data types and tools used commonly by other related packages.
category:               Data
cabal-version:          >= 1.10
build-type:             Simple
extra-source-files:     README.md, ChangeLog.md
homepage:               https://github.com/debug-ito/greskell/
bug-reports:            https://github.com/debug-ito/greskell/issues/

library
  default-language:     Haskell2010
  hs-source-dirs:       src
  ghc-options:          -Wall -fno-warn-unused-imports
  -- default-extensions:   
  other-extensions:     OverloadedStrings, TypeFamilies
  exposed-modules:      Data.Greskell.Greskell,
                        Data.Greskell.GraphSON
  -- other-modules:        
  build-depends:        base >=4.9.0.0 && <4.11,
                        aeson >=0.11.2.1 && <1.4,
                        unordered-containers >=0.2.7.1 && <0.3,
                        scientific >=0.3.4.9 && <0.4,
                        text >=1.2.2.1 && <1.3

test-suite spec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  hs-source-dirs:       test
  ghc-options:          -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
  main-is:              Spec.hs
  -- default-extensions:   
  other-extensions:     OverloadedStrings
  other-modules:        Data.Greskell.GreskellSpec,
                        Data.Greskell.Test.QuickCheck
  build-depends:        base, text, aeson,
                        greskell-core,
                        hspec >=2.2.3,
                        QuickCheck >=2.8.2 && <2.12

test-suite doctest
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  hs-source-dirs:       test
  ghc-options:          -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
  main-is:              DocTest.hs
  build-depends:        base,
                        doctest >=0.11 && <0.15,
                        doctest-discover >=0.1.0.7 && <0.2



source-repository head
  type:                 git
  location:             https://github.com/debug-ito/greskell.git