froto
froto copied to clipboard
Froto: F# Protocol Buffers
With 0.7 shipped, I think it is a good time to look for new project ownership. I am not using this project at work where there is very little chance...
Are there plans for supporting `proto3` in a type provider? BTS, I see that `froto` was last changed >2 years ago. Is this project alive? Or has it been superseded...
The parser currently correctly turns `proto2` and `proto3` into an AST, but does no further processing or semantic validation. Proposed additions: - [x] Process `import` statements #109 - [ ]...
Hi, I didn't find any sample on that one, but would be nice to have serialization of Discriminated Unions
```fsharp type IMessage = abstract member SerializedLength: unit -> uint32 abstract member Serialize: ZeroCopyBuffer -> unit abstract member ReadFrom: ZeroCopyBuffer -> unit ``` Currently when you are generating code you...
Span<T>
https://twitter.com/funcOfJoe/status/943671450677927936 > Span lands in .NET! We began this journey in Midori 10 years ago, a magical elixir of perf and safety. A heartfelt congratulations go out to the team...
The following `.proto` (created with protobuf-net) ``` import "bcl.proto"; // schema for protobuf-net's handling of core .NET types message ClassA { optional string ID; optional string Name = 1 [default...
- [ ] Load and parse files from import statements. See https://developers.google.com/protocol-buffers/docs/proto3#importing-definitions - [ ] Verify message identifiers used as field types are actually defined and enum values used in...