|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
cabal-version: 1.14
|
|
|
|
|
name: HsYAML
|
|
|
|
|
version: 0.2.1.0
|
|
|
|
|
x-revision: 2
|
|
|
|
|
x-revision: 4
|
|
|
|
|
|
|
|
|
|
synopsis: Pure Haskell YAML 1.2 processor
|
|
|
|
|
homepage: https://github.com/hvr/HsYAML
|
|
|
|
@ -15,7 +15,19 @@ copyright: 2015-2018 Herbert Valerio Riedel
|
|
|
|
|
, 2007-2008 Oren Ben-Kiki
|
|
|
|
|
category: Text
|
|
|
|
|
build-type: Simple
|
|
|
|
|
tested-with: GHC==8.6.1, GHC==8.4.3, GHC==8.4.1, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2
|
|
|
|
|
tested-with:
|
|
|
|
|
GHC == 9.2.1
|
|
|
|
|
GHC == 9.0.1
|
|
|
|
|
GHC == 8.10.7
|
|
|
|
|
GHC == 8.8.4
|
|
|
|
|
GHC == 8.6.5
|
|
|
|
|
GHC == 8.4.4
|
|
|
|
|
GHC == 8.2.2
|
|
|
|
|
GHC == 8.0.2
|
|
|
|
|
GHC == 7.10.3
|
|
|
|
|
GHC == 7.8.4
|
|
|
|
|
GHC == 7.6.3
|
|
|
|
|
GHC == 7.4.2
|
|
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
@HsYAML@ is a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) processor, i.e. a library for parsing and serializing YAML documents.
|
|
|
|
@ -78,11 +90,11 @@ library
|
|
|
|
|
Trustworthy
|
|
|
|
|
TypeSynonymInstances
|
|
|
|
|
|
|
|
|
|
build-depends: base >=4.5 && <4.16
|
|
|
|
|
build-depends: base >=4.5 && <4.17
|
|
|
|
|
, bytestring >=0.9 && <0.12
|
|
|
|
|
, containers >=0.4.2 && <0.7
|
|
|
|
|
, deepseq >=1.3.0 && <1.5
|
|
|
|
|
, text >=1.2.3 && <1.3
|
|
|
|
|
, text >=1.2.3 && <2.1
|
|
|
|
|
, mtl >=2.2.1 && <2.3
|
|
|
|
|
, parsec >=3.1.13.0 && < 3.2
|
|
|
|
|
|
|
|
|
@ -114,7 +126,7 @@ executable yaml-test
|
|
|
|
|
, containers
|
|
|
|
|
, mtl
|
|
|
|
|
-- non-inherited
|
|
|
|
|
, megaparsec >= 6.5.0 && < 6.6
|
|
|
|
|
, megaparsec >= 7.0 && < 10
|
|
|
|
|
, microaeson == 0.1.*
|
|
|
|
|
, filepath == 1.4.*
|
|
|
|
|
, directory >= 1.2 && < 1.4
|
|
|
|
@ -139,6 +151,6 @@ test-suite tests
|
|
|
|
|
, containers
|
|
|
|
|
, mtl
|
|
|
|
|
-- non-inherited
|
|
|
|
|
, QuickCheck == 2.13.*
|
|
|
|
|
, tasty == 1.2.*
|
|
|
|
|
, QuickCheck == 2.14.*
|
|
|
|
|
, tasty == 1.4.*
|
|
|
|
|
, tasty-quickcheck == 0.10.*
|
|
|
|
|