Cabal revisions of hjsonschema-1.8.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: hjsonschema-version: 1.8.0-synopsis: JSON Schema library-homepage: https://github.com/seagreen/hjsonschema-license: MIT-license-file: MIT-LICENSE.txt-author: Ian Grant Jeffries-maintainer: ian@housejeffries.com-category: Data-build-type: Simple-cabal-version: >=1.10--- Rerun multi-ghc-travis (executable make-travis-yml-2) after changing:-Tested-With: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1+name: hjsonschema+version: 1.8.0+cabal-version: >=1.10+build-type: Simple+license: MIT+license-file: MIT-LICENSE.txt+maintainer: ian@housejeffries.com+homepage: https://github.com/seagreen/hjsonschema+synopsis: JSON Schema library+category: Data+author: Ian Grant Jeffries+tested-with: GHC ==7.10.3 GHC ==8.0.2 GHC ==8.2.1 extra-source-files:- changelog.md- JSON-Schema-Test-Suite/remotes/*.json- JSON-Schema-Test-Suite/remotes/folder/*.json- JSON-Schema-Test-Suite/tests/draft4/*.json- JSON-Schema-Test-Suite/tests/draft4/optional/*.json- README.md- src/draft4.json- test/Local/*.json- test/supplement/*.json- examples/json/*.json+ changelog.md+ JSON-Schema-Test-Suite/remotes/*.json+ JSON-Schema-Test-Suite/remotes/folder/*.json+ JSON-Schema-Test-Suite/tests/draft4/*.json+ JSON-Schema-Test-Suite/tests/draft4/optional/*.json+ README.md+ src/draft4.json+ test/Local/*.json+ test/supplement/*.json+ examples/json/*.json+x-revision: 1 library- hs-source-dirs:- src- default-language: Haskell2010- default-extensions:- DeriveFunctor- DeriveGeneric- GeneralizedNewtypeDeriving- NoImplicitPrelude- OverloadedStrings- ScopedTypeVariables- if impl(ghc >= 8)- default-extensions: StrictData- ghc-options:- -Wall- exposed-modules:- JSONSchema.Draft4- , JSONSchema.Draft4.Failure- , JSONSchema.Draft4.Schema- , JSONSchema.Draft4.Spec- , JSONSchema.Fetch- , JSONSchema.Types- , JSONSchema.Validator.Draft4- , JSONSchema.Validator.Draft4.Any- , JSONSchema.Validator.Draft4.Array- , JSONSchema.Validator.Draft4.Number- , JSONSchema.Validator.Draft4.Object- , JSONSchema.Validator.Draft4.String- , JSONSchema.Validator.Reference- , JSONSchema.Validator.Types- , JSONSchema.Validator.Utils- other-modules:- JSONSchema.Validator.Draft4.Object.Properties- , Import- build-depends:- base >= 4.7 && < 5- -- 0.11 is for `.:!`:- , aeson >= 0.11- , bytestring >= 0.10- , containers >= 0.5- , file-embed >= 0.0.8- , filepath >= 1.3- , hashable >= 1.2- , hjsonpointer >= 1.1- -- 0.4.30 is for parseUrlThrow:- , http-client >= 0.4.30- , http-client-tls >= 0.3- , http-types >= 0.8- , pcre-heavy >= 1.0- , profunctors >= 5.0- , protolude >= 0.1.10- , QuickCheck >= 2.8- , safe-exceptions >= 0.1.6- , scientific >= 0.3- , semigroups >= 0.18- , unordered-containers >= 0.2- , text >= 1.1- , vector >= 0.10--test-suite local- hs-source-dirs:- test- examples- main-is: Local.hs- type: exitcode-stdio-1.0- default-language: Haskell2010- ghc-options:- -Wall- -fno-warn-orphans- default-extensions:- DeriveGeneric- NoImplicitPrelude- OverloadedStrings- ScopedTypeVariables- other-modules:- Local.Failure- , Local.Reference- , Local.Validation- , Shared- -- from ./examples:- , AlternateSchema- , Simple- , TwoStep- build-depends:- base- , aeson- , bytestring- , filepath- , hjsonpointer- , hjsonschema- , profunctors- , protolude- , semigroups- , text- , QuickCheck- , unordered-containers- , vector-- -- directory-1.2.5 required for `listDirectory`:- , directory >= 1.2.5- , hspec >= 2.2--test-suite remote- hs-source-dirs:- test- examples- main-is: Remote.hs- type: exitcode-stdio-1.0- default-language: Haskell2010- ghc-options:- -Wall- -fno-warn-orphans- default-extensions:- DeriveGeneric- NoImplicitPrelude- OverloadedStrings- ScopedTypeVariables- other-modules:- Shared- -- from ./examples:- , AlternateSchema- build-depends:- base- , aeson- , async- , bytestring- , filepath- , hjsonpointer- , hjsonschema- , profunctors- , protolude- , semigroups- , text- , unordered-containers- , vector+ + if impl(ghc >=8)+ default-extensions: StrictData+ exposed-modules:+ JSONSchema.Draft4+ JSONSchema.Draft4.Failure+ JSONSchema.Draft4.Schema+ JSONSchema.Draft4.Spec+ JSONSchema.Fetch+ JSONSchema.Types+ JSONSchema.Validator.Draft4+ JSONSchema.Validator.Draft4.Any+ JSONSchema.Validator.Draft4.Array+ JSONSchema.Validator.Draft4.Number+ JSONSchema.Validator.Draft4.Object+ JSONSchema.Validator.Draft4.String+ JSONSchema.Validator.Reference+ JSONSchema.Validator.Types+ JSONSchema.Validator.Utils+ build-depends:+ base >=4.7 && <5,+ aeson >=0.11 && <1.3,+ bytestring ==0.10.*,+ containers ==0.5.*,+ file-embed >=0.0.8 && <0.1,+ filepath >=1.3 && <1.5,+ hashable ==1.2.*,+ hjsonpointer >=1.1 && <1.4,+ http-client >=0.4.30 && <0.6,+ http-client-tls ==0.3.*,+ http-types >=0.8 && <0.10,+ pcre-heavy ==1.0.*,+ profunctors >=5.0 && <5.3,+ protolude >=0.1.10 && <0.3,+ QuickCheck >=2.8 && <2.11,+ safe-exceptions >=0.1.6 && <0.2,+ scientific ==0.3.*,+ semigroups ==0.18.*,+ unordered-containers ==0.2.*,+ text >=1.1 && <1.3,+ vector >=0.10 && <0.13+ default-language: Haskell2010+ default-extensions: DeriveFunctor DeriveGeneric+ GeneralizedNewtypeDeriving NoImplicitPrelude OverloadedStrings+ ScopedTypeVariables+ hs-source-dirs: src+ other-modules:+ JSONSchema.Validator.Draft4.Object.Properties+ Import+ ghc-options: -Wall - , directory- , hspec- , wai-app-static- , warp+test-suite local+ type: exitcode-stdio-1.0+ main-is: Local.hs+ build-depends:+ base <4.11,+ aeson <1.3,+ bytestring <0.11,+ filepath <1.5,+ hjsonpointer <1.4,+ hjsonschema -any,+ profunctors <5.3,+ protolude <0.3,+ semigroups <0.19,+ text <1.3,+ QuickCheck <2.11,+ unordered-containers <0.3,+ vector <0.13,+ directory >=1.2.5 && <1.4,+ hspec >=2.2 && <2.5+ default-language: Haskell2010+ default-extensions: DeriveGeneric NoImplicitPrelude+ OverloadedStrings ScopedTypeVariables+ hs-source-dirs: test examples+ other-modules:+ Local.Failure+ Local.Reference+ Local.Validation+ Shared+ AlternateSchema+ Simple+ TwoStep+ ghc-options: -Wall -fno-warn-orphans+test-suite remote+ type: exitcode-stdio-1.0+ main-is: Remote.hs+ build-depends:+ base <4.11,+ aeson <1.3,+ async <2.2,+ bytestring <0.11,+ filepath <1.5,+ hjsonpointer <1.4,+ hjsonschema -any,+ profunctors <5.3,+ protolude <0.3,+ semigroups <0.19,+ text <1.3,+ unordered-containers <0.3,+ vector <0.13,+ directory <1.4,+ hspec <2.5,+ wai-app-static <3.2,+ warp <3.3+ default-language: Haskell2010+ default-extensions: DeriveGeneric NoImplicitPrelude+ OverloadedStrings ScopedTypeVariables+ hs-source-dirs: test examples+ other-modules:+ Shared+ AlternateSchema+ ghc-options: -Wall -fno-warn-orphans