packages feed

data-basic-0.2.0.1: data-basic.cabal

name: data-basic
version: 0.2.0.1
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: nikola@henezi.com, luka.horvat9@gmail.com
homepage: https://gitlab.com/haskell-hr/basic
synopsis: A database library with a focus on ease of use, type safety and useful error messages
description:
    Please see README.md
category: Database
author: Nikola Henezi, Luka Horvat
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
    type: git
    location: https://gitlab.com/haskell-hr/basic.git

library
    exposed-modules:
        Internal.Data.Basic.TH
        Internal.Data.Basic
        Internal.Control.Effects.Basic
        Internal.Data.Basic.Types
        Internal.Data.Basic.Lens
        Internal.Data.Basic.TH.Types
        Internal.Data.Basic.TH.Compiler
        Internal.Data.Basic.TH.SqlToHsTypes
        Internal.Data.Basic.TH.Helper
        Internal.Data.Basic.TH.Generator
        Internal.Data.Basic.Sql.Types
        Internal.Data.Basic.Compiler
        Internal.Data.Basic.Replace
        Internal.Data.Basic.Common
        Internal.Data.Basic.Virtual
        Internal.Data.Basic.Compare
        Internal.Data.Basic.Foreign
        Internal.Data.Basic.TypeLevel
        Internal.Data.Basic.SqlToHsTypes
        Data.Basic.Example
        Data.Basic.Tutorial
        Data.Basic
    build-depends:
        base >=4.7 && <5,
        simple-effects >=0.8.0.2,
        lens >=4.15.1,
        postgresql-simple >=0.5.2.1,
        text >=1.2.2.1,
        hssqlppp >=0.6.0,
        template-haskell >=2.11.1.0,
        cases >=0.1.3.2,
        containers >=0.5.7.1,
        time >=1.6.0.1,
        bytestring >=0.10.8.1,
        overload >=0.1.0.3,
        aeson >=1.0.2.1,
        lens-aeson >=1.0.0.5,
        binary >=0.8.3.0,
        string-conv >=0.1.2,
        mtl >=2.2.1
    default-language: Haskell2010
    default-extensions: NoImplicitPrelude OverloadedStrings
                        DuplicateRecordFields MultiParamTypeClasses DataKinds
                        TemplateHaskell FlexibleContexts FlexibleInstances TypeFamilies
                        ScopedTypeVariables ConstraintKinds NoMonomorphismRestriction
                        TypeOperators TypeApplications PolyKinds DeriveGeneric
    hs-source-dirs: src
    other-modules:
        Internal.Interlude
    ghc-options: -Wall

test-suite basic-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.9.1.0,
        basic -any,
        postgresql-simple >=0.5.2.1,
        time >=1.6.0.1,
        lens >=4.15.1
    default-language: Haskell2010
    hs-source-dirs: test
    other-modules:
        Model
    ghc-options: -threaded -rtsopts -with-rtsopts=-N