FastBinaryEncoding icon indicating copy to clipboard operation
FastBinaryEncoding copied to clipboard

Fast Binary Encoding is ultra fast and universal serialization solution for C++, C#, Go, Java, JavaScript, Kotlin, Python, Ruby, Swift

Results 36 FastBinaryEncoding issues
Sort by recently updated
recently updated
newest added

I am trying to check net capacity and I am doing: ``` private async Task FakeDataSource() { await Task.Delay(500); Random rnd = new Random(); var randomBytes = new byte[64000]; //...

At several locations in the `fbe.cpp` file exceptions are thrown. Is it possible to generate code without these exceptions? For example here: https://github.com/chronoxor/FastBinaryEncoding/blob/f2134da843d91137cfc769ed2ca49bcc0010d745/proto/fbe.cpp#L85 I would like to use fbe in...

https://github.com/chronoxor/FastBinaryEncoding/commit/5d98a626c6cc3ce9483dbe1c56551f0e60e3792b 2 issues 1. in this commit, the macro only checks for `FMT_VERSION`. but `ostream_formatter` is only introduced after fmt 9.0.0. So the generated code would fail with earlier version...

In latest version 1.12.0.0, when generating python files example .fbe file ```text message Generated { string val1 = "42"; uuid [id] = uuid1; } ``` will create something like ```python...

./unix.sh ─╯ -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- The System identification is Darwin 23.2.0 Platform/Darwin -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- The System identification is Darwin...

Hello @chronoxor , we use fbe in our cpp an c# app, we decided to use in our python app too, but we encountered a small problem. In our schemes...