-- Initial yaml-combinators.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: yaml-combinators
version: 1.1.1
synopsis: YAML parsing combinators for improved validation and error reporting
description: Based on the article
<https://ro-che.info/articles/2015-07-26-better-yaml-parsing Better Yaml Parsing>.
homepage: https://github.com/feuerbach/yaml-combinators
license: MIT
license-file: LICENSE
author: Roman Cheplyaka
maintainer: roma@ro-che.info
copyright: (c) 2015 Signal Vine, LLC
(c) 2017 Roman Cheplyaka
category: Text
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/feuerbach/yaml-combinators.git
library
default-language:
Haskell2010
exposed-modules:
Data.Yaml.Combinators
-- other-modules:
-- other-extensions:
build-depends:
aeson,
base >= 4.8 && < 5,
bytestring,
generics-sop >= 0.2.5,
scientific,
text,
transformers,
unordered-containers,
vector,
yaml
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans
test-suite test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
tests
main-is:
test.hs
build-depends:
base
, aeson
, tasty
, tasty-hunit
, text
, unordered-containers
, yaml-combinators
test-suite doctests
type: exitcode-stdio-1.0
ghc-options: -threaded
hs-source-dirs:
tests
main-is:
doctests.hs
build-depends: base, doctest
default-language:
Haskell2010