cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: eventium-postgresql
version: 0.1.0
synopsis: Postgres implementations for eventium
description: Eventium-postgresql provides a PostgreSQL-based event store implementation for the Eventium event
sourcing framework. It uses the Persistent library for type-safe database access and provides
efficient event storage and retrieval with support for aggregate streams, event versioning, and
optimistic concurrency control. This is a production-ready backend for event-sourced applications.
category: Database,Eventsourcing,PostgreSQL
stability: experimental
homepage: https://github.com/aleks-sidorenko/eventium#readme
bug-reports: https://github.com/aleks-sidorenko/eventium/issues
maintainer: Alexander Sidorenko
license: MIT
license-file: LICENSE.md
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/aleks-sidorenko/eventium
library
exposed-modules:
Eventium.Store.Postgresql
other-modules:
Paths_eventium_postgresql
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson >=1.5 && <2.3
, base >=4.9 && <5
, bytestring >=0.10 && <0.13
, eventium-core
, eventium-sql-common
, mtl >=2.2 && <2.4
, persistent >=2.13 && <2.15
, text >=1.2 && <2.2
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Eventium.Store.PostgresqlSpec
Eventium.Store.Postgresql
Paths_eventium_postgresql
hs-source-dirs:
tests
src
ghc-options: -Wall
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
HUnit
, aeson >=1.5 && <2.3
, base >=4.9 && <5
, bytestring >=0.10 && <0.13
, eventium-core
, eventium-sql-common
, eventium-test-helpers
, hspec
, mtl >=2.2 && <2.4
, persistent >=2.13 && <2.15
, persistent-postgresql
, text >=1.2 && <2.2
, utf8-string
default-language: Haskell2010