njlr
njlr
Hello, would a PR for `Expect.floatClose` be accepted? Here are the docs from Expecto: > `floatClose : Accuracy -> float -> float -> string -> unit` - Expect the floats...
Are Poetry dependency groups supported? Is there an example of using a dev dependency for a particular target, e.g. a `py_test` ?
```fsharp #r "nuget: Thoth.Json.Net, 10.1.0" open Thoth.Json.Net let json = """ { "x": 123, "y": 456, } """ match Decode.fromString Decode.value json with | Ok _ -> printfn "The JSON...
Hello! I think I have figured out how to implement an Auto decoder for `seq (inner : obj seq) = interface seq = (seq { for x in inner do...
There is already a PR to fix this: https://github.com/studio-b12/array-from/pull/11
I am trying to achieve the following in Bazel, in order to migrate away from `rules_docker`: - Base image pulled using `rules_oci` - An Alpine package installed using apko (`git`)...
I am trying to use Fargo in a .NET 6 project, which is not possible due to conflicting requirements on `FSharp.Core`. The [latest on Nuget](https://www.nuget.org/packages/Fargo.CmdLine/1.1.14#dependencies-body-tab) requires `FSharp.Core` `(>= 7.0.400)` However,...
- Introduce Auto module - Re-enable many tests This PR introduces an Auto module that is agnostic to the JSON backend used. It does this by composing Encoders / Decoders...
I have some HTML that Firefox renders like this:  If I "round-trip" this in `FSharp.Data`, then the output renders like this:  code was synchronous, and therefore not usable against a real data-store. This PR makes the types async and introduces some strong typing. This is a breaking...