File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Library to read and write protocol buffers data
4
4
5
+ ## Install
6
+
7
+ To get started generaing Rust code from ProtoBufs, add this to your ` Cargo.toml `
8
+ ``` toml
9
+ [dependencies ]
10
+ protobuf = " 3.7"
11
+
12
+ [build-dependencies ]
13
+ protobuf-codegen = " 3.7"
14
+ ```
15
+
5
16
## Features
6
17
7
18
This crate has one feature, which is ` with-bytes ` .
Original file line number Diff line number Diff line change 1
1
//! # Library to read and write protocol buffers data
2
2
//!
3
+ //! ## Install
4
+ //!
5
+ //! To get started generaing Rust code from ProtoBufs, add this to your `Cargo.toml`
6
+ //! ```toml
7
+ //! [dependencies]
8
+ //! protobuf = "3.7"
9
+ //!
10
+ //! [build-dependencies]
11
+ //! protobuf-codegen = "3.7"
12
+ //! ```
13
+ //!
3
14
//! ## Features
4
15
//!
5
16
//! This crate has one feature, which is `with-bytes`.
You can’t perform that action at this time.
0 commit comments