| Crates.io | steam-vent-proto |
| lib.rs | steam-vent-proto |
| version | 0.5.2 |
| created_at | 2021-06-19 20:07:21.476312+00 |
| updated_at | 2025-10-19 14:16:38.971235+00 |
| description | Protobuf structs used by the Steam client protocol |
| homepage | |
| repository | https://codeberg.org/steam-vent/proto |
| max_upload_size | |
| id | 412198 |
| size | 12,983 |
Sourced from https://github.com/SteamDatabase/Protobufs
cd build
cargo r -- ../steam/{protos,src/generated}
cargo r -- ../../proto-csgo/{protos,src/generated}
cargo r -- ../../proto-dota2/{protos,src/generated}
cargo r -- ../../proto-tf2/{protos,src/generated}
If you need to use protobufs that aren't packages by steam-vent, you can create a new package for the protobufs using the following steps:
Create a new crate
Add steam-vent-proto-common as a dependency
Place the protobufs in src/protos
Create an empty src/generated folder
Either install steam-vent-proto-build trough cargo-install or clone this
repo and build it from the build directory.
Run steam-vent-proto-build path/to/src/protos path/to/src/generated
Create src/lib.rs with the following contents:
mod generated;
pub use generated::*;