Legivel
Legivel copied to clipboard
F# Yaml 1.2 parser
### Idea for a yaml type provider This old type provider to read yaml is not usable anymore.. https://fsprojects.github.io/FSharp.Configuration/YamlConfigProvider.html could be handful to have an independent yaml type provider working...
I'm trying to parse some real world manually written documents with some type inconsistencies: ```yaml { a_func: ["Math.negate"] b_func: ["Math.divide", 1000] c_func: "Math.abs" } ``` In this case there are...
### Description I'd need a way to provide naming conventions between yaml document field names and .net type field/property names, where I don't need to annotate the complete type hierarchy....
In `MapYaml.AndRequireFullProjection` with Schema: ```fsharp type Schema = { dict: Map number: int items: int list } ``` and an empty document: ```yaml # empty document ``` There is an...
Hi, After spliting my Legivel-touching test code into multiple files, I have found out that I'm getting some inconsistent error traces originating from Legivel code when multiple tests are run...
I have found an issue with Legivel and I'm providing reproduction code below. ```fsharp #!/usr/bin/env -S dotnet fsi #r "nuget: Open.Collections, 3.1.2" //#r "nuget: Open.Collections, 2.11.3" #r "nuget: Legivel, 0.4.6"...