cabal-version: >=1.10
name: persistent-documentation
version: 0.1.0.0
synopsis: Documentation DSL for persistent entities
description: A convenient DSL that allows you to attach documentation to persistent database entities
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: parsonsmatt
maintainer: parsonsmatt@gmail.com
copyright: 2019 Lumi
category: Database
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules:
Database.Persist.Documentation
Database.Persist.Documentation.Internal
Data.StrMap
Data.SemiMap
-- other-modules:
build-depends:
base >= 4.9 && < 5.0
, containers
, persistent >= 2.10 && < 3.0
, text
, mtl
, template-haskell
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type:
exitcode-stdio-1.0
main-is:
Spec.hs
hs-source-dirs:
test
default-language:
Haskell2010
build-depends:
base >= 4.9 && < 5
, containers
, hspec
, hspec-discover
, persistent
, persistent-documentation
, persistent-template >= 2.7
, text
other-modules:
DocumentationSpec
Entities