packages feed

HsSyck-0.55: HsSyck.cabal

Name:                HsSyck
Version:             0.55
Cabal-version:       >= 1.10
Category:            Text, Pugs
Synopsis:            Fast, lightweight YAML loader and dumper
Description:         This is a simple YAML ('Yet Another Markup Language') processor,
                     used by the Pugs project for handling data serialization; this can be
                     useful for optimization and caching purposes.
                     .
                     This is an interface to the @syck@ C library for parsing and
                     dumping YAML data. It lets you transform textual YAML data into an
                     object of type 'YamlNode', and vice versa, fast.

License:             MIT
License-File:        LICENSE
Author:              Audrey Tang
Maintainer:          audreyt@audreyt.org
Copyright:           Audrey Tang, Gaal Yahas, Oliver Charles, 2005, 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2025
Bug-Reports: https://github.com/audreyt/hssyck/issues

Build-Type:          Simple
Tested-With:         GHC==6.8.2, GHC==6.8.3, GHC==6.10.1, GHC==6.10.2, GHC==7.6.3, GHC==9.4.8
Data-Files:          Changes
Extra-Source-Files:  syck/syck.h syck/syck_st.h syck/gram.h syck/yamlbyte.h

source-repository head
    type:     git
    location: http://github.com/audreyt/hssyck

Library
    Default-language:    Haskell2010
    Build-Depends: base>=4 && <6,
                   bytestring>=0.9.0.1 && <0.13,
                   syb<0.8,
                   utf8-string>=0.3 && <1.1,
                   hashtables<1.5

    exposed-modules: Data.Yaml.Syck

    ghc-options: -funbox-strict-fields -optc-Wno-int-conversion -optc-Wno-deprecated-non-prototype -optc-Wno-format -optc-Wno-format-security


    c-sources: syck/bytecode.c syck/emitter.c syck/gram.c syck/handler.c
               syck/implicit.c syck/node.c syck/syck.c syck/syck_st.c
               syck/token.c syck/yaml2byte.c
    include-dirs:        syck