Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Derek Benson 41f12a239c Add missing #![deny(unsafe_op_in_unsafe_fn)] to upb/rust/lib.rs and fix violating functions 6 months ago
..
BUILD UPB text encoder without using reflection for Rust (used for a message's Debug trait) that will print out field number to value entries instead of field name to value entries of a message like how it's expected for the usual text format using reflection. 6 months ago
README.md
arena.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
array.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
ctype.rs
extension_registry.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
lib.rs Add missing #![deny(unsafe_op_in_unsafe_fn)] to upb/rust/lib.rs and fix violating functions 6 months ago
map.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
message.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
message_value.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
mini_table.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
opaque_pointee.rs
owned_arena_box.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
string_view.rs
text.rs Change rust/upb to only ever do `use super::` rather than `use crate::` 6 months ago
upb_api.c UPB text encoder without using reflection for Rust (used for a message's Debug trait) that will print out field number to value entries instead of field name to value entries of a message like how it's expected for the usual text format using reflection. 6 months ago
wire.rs Add missing #![deny(unsafe_op_in_unsafe_fn)] to upb/rust/lib.rs and fix violating functions 6 months ago

README.md

Rust upb bindings

This directory contains Rust bindings for upb, attempting to be the a direct mapping to expose upb to Rust. This should not be used directly by application code, instead is an implementation detail for Rust Protobuf, which is still under development but can be found here: here.