YAMLize.cabal 644 B

123456789101112131415161718192021
  1. name: YAMLize
  2. version: 0.1.0.0
  3. license: OtherLicense
  4. license-file: LICENSE
  5. author: Getty Ritter
  6. maintainer: gdritter@galois.com
  7. category: Data
  8. build-type: Simple
  9. cabal-version: >=1.10
  10. executable ToYAML
  11. main-is: ToYAML.hs
  12. build-depends: base >=4.6 && <4.7, yaml, aeson, bytestring
  13. hs-source-dirs: src
  14. default-language: Haskell2010
  15. executable FromYAML
  16. main-is: FromYAML.hs
  17. build-depends: base >=4.6 && <4.7, yaml, aeson, bytestring
  18. hs-source-dirs: src
  19. default-language: Haskell2010