packages feed

sqlite-simple-interpolate-0.1: sqlite-simple-interpolate.cabal

cabal-version:      3.0
name:               sqlite-simple-interpolate
version:            0.1
synopsis:           Interpolated SQLite queries via quasiquotation
description:
  This package provides Quasiquoters for writing SQLite queries with inline interpolation of values.
  The values are interpolated using toField from sqlite-simple.
  See the README for more details.

license:            BSD-3-Clause
license-file:       LICENSE
author:             ruby0b
maintainer:         ruby0b
copyright:          ©2022 ruby0b ©2019 Elliot Cameron
homepage:           https://github.com/ruby0b/sqlite-simple-interpolate
category:           Database
tested-with:        GHC ==9.0.2
extra-source-files:
  CHANGELOG.md
  README.md

extra-doc-files:    README.md

source-repository head
  type:     git
  location: git://github.com/ruby0b/sqlite-simple-interpolate.git

library
  hs-source-dirs:   src
  exposed-modules:  Database.SQLite.Simple.QQ.Interpolated
  other-modules:    Database.SQLite.Simple.QQ.Interpolated.Parser
  build-depends:
    , base              >=4.5  && <5
    , haskell-src-meta  >=0.6  && <0.9
    , mtl               >=2.1  && <2.3
    , parsec            ^>=3.1
    , sqlite-simple     >=0.1
    , template-haskell  >=2.17 && <2.19

  ghc-options:      -Wall
  default-language: Haskell2010