gedcom-0.2.0.0: gedcom.cabal
name: gedcom
version: 0.2.0.0
synopsis: Parser for the GEDCOM genealogy file format.
description: A parser for the legacy GEDCOM 5.5 file format. GEDCOM is
a widely used file format in genealogy.
homepage: https://github.com/CLowcay/hs-gedcom
license: BSD3
license-file: LICENSE
author: Callum Lowcay
maintainer: cwslowcay@gmail.com
copyright: 2018 Callum Lowcay
category: Genealogy
build-type: Simple
extra-source-files: README.md changelog.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Data.Gedcom
, Data.Gedcom.Internal.Common
, Data.Gedcom.Internal.CoreTypes
, Data.Gedcom.Internal.LineParser
, Data.Gedcom.Internal.ParseMonads
, Data.Gedcom.Internal.Parser
, Data.Gedcom.Structure
, Data.Text.Encoding.ANSEL
other-modules:
build-depends: base >= 4.8 && < 5
, array >= 0.5.1.1 && < 0.6
, bytestring >= 0.10.8.1 && < 0.11
, containers >= 0.5.7.1 && < 0.6
, megaparsec >= 6.3 && < 6.4
, monad-loops >= 0.4.3 && < 0.5
, mtl >= 2.2.1 && < 2.3
, text-all >= 0.4.1.1 && < 0.5
, time >= 1.8 && < 1.9
default-language: Haskell2010
test-suite gedcom-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, gedcom
, hspec >= 2.4.4 && < 2.5
, text-all >= 0.4.1.1 && < 0.5
, megaparsec >= 5.3.1 && < 5.4
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/CLowcay/hs-gedcom