cabal-version: 1.18 name: persistent-sql-lifted version: 0.1.0.0 license: MIT license-file: LICENSE maintainer: Freckle Education homepage: https://github.com/freckle/freckle-app#readme bug-reports: https://github.com/freckle/freckle-app/issues synopsis: Monad classes for running queries with Persistent and Esqueleto description: This package introduces two classes: MonadSqlBackend for monadic contexts in which a SqlBackend is available, and MonadSqlBackend for contexts in which we can execute a SQL transaction. . Additionally, this package provides variants of query-running utilities from Persistent and Esqueleto which are concretized to use SqlBackend, generalized to a MonadSqlBackend m constraint rather than "ReaderT backend", and wrapped in checkpointCallStack so that exceptions will include call stacks. category: Database build-type: Simple extra-source-files: package.yaml extra-doc-files: README.md CHANGELOG.md source-repository head type: git location: https://github.com/freckle/freckle-app library exposed-modules: Database.Persist.Sql.Lifted Database.Persist.Sql.Lifted.Core Database.Persist.Sql.Lifted.Esqueleto Database.Persist.Sql.Lifted.HasSqlBackend Database.Persist.Sql.Lifted.MonadSqlBackend Database.Persist.Sql.Lifted.MonadSqlTx Database.Persist.Sql.Lifted.Persistent hs-source-dirs: library other-modules: Paths_persistent_sql_lifted default-language: GHC2021 default-extensions: ExplicitNamespaces FunctionalDependencies GADTs NoImplicitPrelude NoMonomorphismRestriction ghc-options: -fignore-optim-changes -fwrite-ide-info -Weverything -Wno-all-missed-specialisations -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missing-kind-signatures -Wno-missing-local-signatures -Wno-missing-safe-haskell-mode -Wno-monomorphism-restriction -Wno-prepositive-qualified-module -Wno-safe -Wno-unsafe build-depends: annotated-exception >=0.2.0.4, base >=4.16.4.0 && <5, conduit >=1.3.5, containers >=0.6.5.1, esqueleto >=3.5.10.0, mtl >=2.2.2, persistent >=2.14.0.1, text >=1.2.5.0, unliftio-core >=0.2.1.0 if impl(ghc >=9.8) ghc-options: -Wno-missing-role-annotations -Wno-missing-poly-kind-signatures