10 releases
new 0.1.9 | Mar 23, 2025 |
---|---|
0.1.8 | Mar 2, 2025 |
0.1.4 | Feb 28, 2025 |
0.1.3 | Nov 22, 2024 |
#345 in Encoding
789 downloads per month
12MB
243K
SLoC
This package is experimental and I tried to convert answer from k8s-openapi (kube-rs) to rust-protobuf.
In the future I will add Serialize to custom_date. At this time i only need the Deserialize (i don't like to work with JSON).
use k8s_rs_pb::api::core::v1::Pod;
use k8s_openapi::api::core::v1::Pod as OtherPod;
let pod_openapi = OtherPod::default();
let pod_pb: Pod = k8s_rs_pb::converter::from_openapi(pod_openapi).unwrap();
assert_eq!(pod_pb.has_metadata(), true);
Dependencies
~37MB
~597K SLoC