Maxime Mangel
Maxime Mangel
**Issue by [sachabroute](https://github.com/sachabroute)** _Thursday Jul 25, 2019 at 11:00 GMT_ _Originally opened as https://github.com/MangelMaxime/Thoth/issues/156_ ---- When serializing a DateTime CEST, on deserializing we lose the "Kind" information and it is...
**Issue by [alfonsogarciacaro](https://github.com/alfonsogarciacaro)** _Sunday Feb 24, 2019 at 23:21 GMT_ _Originally opened as https://github.com/MangelMaxime/Thoth/issues/128_ ---- Now that Thoth.Json 3 beta is published it's time to think of v4 😸 It's...
**Issue by [Nhowka](https://github.com/Nhowka)** _Thursday Dec 06, 2018 at 15:00 GMT_ _Originally opened as https://github.com/MangelMaxime/Thoth/issues/98_ ---- I had a `char` field on one of my bridge messages and it failed to...
```fs type Temp = { Name : string; Age : int } type SeveralArgumentDus2 = SeveralArgs2 of int * Temp type SingleNoArguments = SingleNoArguments type MyUnion = Foo of int...
```fs type SeveralArgumentDus = SeveralArgs of int * {| Name : string; Age : int |} let value = SeveralArgs (10, {| Name = "maxime"; Age = 28 |}) let...
Original issue: https://github.com/thoth-org/Thoth.Json.Giraffe/issues/15 > > > Hum, I guess the problem comes from the fact you are using `'T option option`. > > And we kind of erase the `option`...
Currently, the encoder API requires the user to do some manual work like apply decoder using `List.map` before calling `Encode.list` ```fs let l = [ "a"; "b"; "c" ] let...
- [Move the path construction in the Error case only](https://github.com/thoth-org/Thoth.Json/issues/43) - [Make Thoth.Json(.Core) parser agnostic](https://github.com/thoth-org/Thoth.Json/issues/38). The idea is to have all the decoder/encoder logic write once, and have a contract...