gedcom-0.1.0.0: gedcom.cabal
name: gedcom
version: 0.1.0.0
synopsis: Parser for the GEDCOM genealogy file format.
description: A parser for the legacy GEDCOM 5.5 file format. GEDCOM is
widely used by genealogy software, despite the limitations
of the format.
homepage: https://github.com/CLowcay/hs-gedcom
license: BSD3
license-file: LICENSE
author: Callum Lowcay
maintainer: cwslowcay@gmail.com
copyright: 2017 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.Text.Encoding.ANSEL
other-modules: Data.Gedcom.Common
, Data.Gedcom.Internal.Common
, Data.Gedcom.LineParser
, Data.Gedcom.ParseMonads
, Data.Gedcom.Parser
, Data.Gedcom.Structure
build-depends: base >= 4.7 && < 5
, array >= 0.5.1.1 && < 0.6
, bytestring >= 0.10.8.1 && < 0.11
, containers >= 0.5.7.1 && < 0.6
, megaparsec >= 5.3.1 && < 5.4
, monad-loops >= 0.4.3 && < 4.4
, mtl >= 2.2.1 && < 2.3
, text-all >= 0.4.1.1 && < 0.5
, time >= 1.6.0.1 && < 1.7
default-language: Haskell2010
test-suite gedcom-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, gedcom
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/CLowcay/hs-gedcom