ProtoBuf.jl
ProtoBuf.jl copied to clipboard
Julia protobuf implementation
Just a quick query about the `DateTime` type in Julia. If one wanted to serialize this using Protobuf, what might be the best way of approaching this? I tried serializing...
WIP
Fixes #260
Fix CI
* Don't run JET on nighly * Add invokelatest where necessary to fix the world age changes upstream * Bump min supported Julia version to 1.10
An issue was opened [here](https://github.com/JuliaIO/ProtoBuf.jl/issues/258) by @dourouc05 that requests support for a mutable API. This PR attempts to address that.
Given a proto file: ```proto syntax = "proto3"; service MyService {} ``` Calling `protojl` on it generates the following code: ```julia # Autogenerated using ProtoBuf.jl v1.0.16 on 2024-12-31T21:39:23.141 # original...
tl;dr: what is the reasoning why ProtoBuf.jl only generates immutable `struct`s? Would you accept a PR to add support for `mutable struct`s on top of the existing immutable `struct`s? Context...