name: yaml version: 0.4.0 x-revision: 2 license: BSD3 license-file: LICENSE author: Michael Snoyman , Anton Ageev maintainer: Michael Snoyman synopsis: Low-level binding to the libyaml C library. description: Provides support for parsing and emitting Yaml documents. Includes the full C library in the package so you don't need to worry about any non-Haskell dependencies. category: Web stability: unstable cabal-version: >= 1.2 build-type: Simple homepage: http://github.com/snoyberg/yaml/ extra-source-files: c/helper.h, c/yaml_private.h, c/yaml.h flag nolib description: Skip building the library default: False manual: True flag buildtests description: Build the executable to run unit tests default: False manual: True library if flag(nolib) Buildable: False else Buildable: True build-depends: base >= 4 && < 4.7 , transformers >= 0.1 && < 0.3 , bytestring >= 0.9.1.4 && < 0.10 , enumerator >= 0.4 && < 0.5 , MonadCatchIO-transformers >= 0.2.2 && < 0.3 exposed-modules: Text.Libyaml ghc-options: -Wall c-sources: c/helper.c, c/api.c, c/dumper.c, c/emitter.c, c/loader.c, c/parser.c, c/reader.c, c/scanner.c, c/writer.c include-dirs: c executable runtests if flag(buildtests) Buildable: True cpp-options: -DTEST build-depends: test-framework , test-framework-hunit , HUnit , directory , base >= 4 && < 4.7 , transformers >= 0.1 && < 0.3 , bytestring >= 0.9.1.4 && < 0.10 , enumerator >= 0.4 && < 0.5 , MonadCatchIO-transformers >= 0.2.2 && < 0.3 else Buildable: False ghc-options: -Wall c-sources: c/helper.c, c/api.c, c/dumper.c, c/emitter.c, c/loader.c, c/parser.c, c/reader.c, c/scanner.c, c/writer.c include-dirs: c main-is: runtests.hs