Pantelis Antoniou
Pantelis Antoniou
This module implements an additional C based backend based on libfyaml. For the initial drop the goal is to have something as similar as possible to the libyaml backend, where...
Add libfyaml's JSON mode parser - no binary required; just the built-in testsuite harness of libfyaml is enough. Note that all the tests pass, besides the implementation defined ones. Signed-off-by:...
Currently it is expected that a anchor declaration will come before its use as an alias, i.e. ```yaml - &foo foo - *foo ``` So this is not allowed: ```yaml...
The spec explicitly disallows: ```yaml &foo *bar ``` This probably does not happen when YAML is generated, but it is surprising when manually editing YAML. For instance ```yaml - &foo...
This PR provides multithreading for the C-implementation. It is quite minimal, but it gets the job done of getting C to withing 1% of the Rust implementation.