yaml-schema.cabal 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. name: yaml-schema
  2. version: 0.1.0.0
  3. synopsis: A library and program for validating YAML/JSON against a schema.
  4. description:
  5. yaml-schema is a fast Haskell library for validating YAML against a schema. It
  6. contains a very simple interface.
  7. .
  8. You can interact with it with Strings, Text, ByteStrings, or Files. You can
  9. also construct schemata with Haskell code, and validate using those.
  10. .
  11. JSON is a proper subset of YAML, so this will also work with JSON data.
  12. homepage: https://notabug.org/pharpend/yaml-schema
  13. license: Apache-2.0
  14. license-file: LICENSE
  15. author: Peter Harpending
  16. maintainer: peter@harpending.org
  17. copyright: Copyright 2015 Peter Harpending
  18. category: Data
  19. build-type: Simple
  20. extra-source-files: README.md
  21. cabal-version: >=1.10
  22. library
  23. default-language: Haskell2010
  24. default-extensions:
  25. FlexibleInstances
  26. LambdaCase
  27. MultiWayIf
  28. OverloadedStrings
  29. build-depends:
  30. base ==4.8.*
  31. , bytestring
  32. , text
  33. , yaml
  34. exposed-modules:
  35. Data.Yaml.Schema