#tensorflow #protobuf #serde #macro #config

macro tensorflow_proto_derive

Procedural macros for tensorflow_proto

1 unstable release

0.1.0 Aug 17, 2020

#67 in #tensorflow

Download history 141/week @ 2024-03-13 253/week @ 2024-03-20 225/week @ 2024-03-27 252/week @ 2024-04-03 311/week @ 2024-04-10 240/week @ 2024-04-17 174/week @ 2024-04-24 248/week @ 2024-05-01 131/week @ 2024-05-08 263/week @ 2024-05-15 451/week @ 2024-05-22 247/week @ 2024-05-29 281/week @ 2024-06-05 226/week @ 2024-06-12 164/week @ 2024-06-19 363/week @ 2024-06-26

1,063 downloads per month
Used in tensorflow_proto

Custom license

4KB

tensorflow_proto

Continuous Integration Crates.io docs.rs

tensorflow_proto is a crate that uses prost-build to generate Rust structs to be used in serialization/deserialization of protocol buffers wherever Tensorflow uses them.

In particular, this is useful in the tensorflow/rust library when calling SessionOptions::set_config to configure Tensorflow.

Note: This crate is tested against tensorflow 1.15.2 and 2.0.0.

Usage

Default Features

Add

tensorflow_proto = "0.3.0"

to your Cargo.toml.

Serde Support

Serde support can be enabled using the "serde-derive" feature:

tensorflow_proto = { version = "0.3.0", features = ["serde-derive"] }

This will add a #[derive(serde::Serialize, serde::Deserialize)] to every generated struct.

You must also depend on serde as well.

Easy conversion to bytes

Finally, you can enable code generation for an implementation of std::convert::TryFrom that encodes a message into a Vec<u8> for every struct generated by prost:

tensorflow_proto = { version = "0.3.0", features = ["convert"] }

Use custom Tensorflow *.proto sources

To use a different version of Tensorflow protocol buffer sources, define TENSORFLOW_PROTO_SOURCE to be the root of a Tensorflow source tree.

Dependencies

~0–360KB