cabal-version: 2.2 name: libyaml-streamly version: 0.2.3.0 synopsis: Low-level, streaming YAML interface via streamly. description: Rewrite of libyaml in streamly category: Text stability: stable homepage: https://github.com/hasufell/streamly-yaml#readme bug-reports: https://github.com/hasufell/streamly-yaml author: Michael Snoyman , Anton Ageev ,Kirill Simonov, Julian Ospald maintainer: Julian Ospald license: BSD-3-Clause license-file: LICENSE build-type: Simple extra-doc-files: ./ChangeLog.md ./README.md extra-source-files: ./c/helper.h source-repository head type: git location: https://github.com/hasufell/streamly-yaml flag no-unicode description: Don't enable unicode output. Instead, unicode characters will be escaped. manual: False default: False flag system-libyaml description: Use the system-wide libyaml instead of the bundled copy manual: False default: True library exposed-modules: Text.Libyaml other-modules: Paths_libyaml_streamly autogen-modules: Paths_libyaml_streamly hs-source-dirs: src ghc-options: -Wall -fspecialise-aggressively -fexpose-all-unfoldings -fdicts-strict -O2 -fmax-worker-args=16 -fspec-constr-recursive=16 include-dirs: c c-sources: ./c/helper.c build-depends: base >=4.9.1 && <5 , bytestring >=0.9.1.4 , deepseq , safe-exceptions , streamly-core >=0.2.0 && <0.3 if flag(no-unicode) cpp-options: -D__NO_UNICODE__ if flag(system-libyaml) pkgconfig-depends: yaml-0.1 else build-depends: libyaml-clib if os(windows) cpp-options: -DWINDOWS build-depends: directory default-language: Haskell2010