#protobuf #steam-client #steam-vent

steam-vent-proto-common

Trait for protobuf structs used by the Steam client protocol

2 releases

0.5.1 Oct 18, 2025
0.5.0 Sep 29, 2024

#2360 in Game dev

Download history 43/week @ 2025-09-25 19/week @ 2025-10-02 12/week @ 2025-10-09 226/week @ 2025-10-16 34/week @ 2025-10-23 1/week @ 2025-10-30 3/week @ 2025-11-06 12/week @ 2025-11-13 4/week @ 2025-11-20 4/week @ 2025-11-27 12/week @ 2025-12-04 4/week @ 2025-12-11 11/week @ 2025-12-18 7/week @ 2025-12-25 111/week @ 2026-01-01 168/week @ 2026-01-08

299 downloads per month
Used in 8 crates (5 directly)

MIT license

5KB
76 lines

Protobufs for steam-vent

Sourced from https://github.com/SteamDatabase/Protobufs

Updating generated code

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}

Using custom protobufs

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:

  1. Create a new crate

  2. Add steam-vent-proto-common as a dependency

  3. Place the protobufs in src/protos

  4. Create an empty src/generated folder

  5. Either install steam-vent-proto-build trough cargo-install or clone this repo and build it from the build directory.

  6. Run steam-vent-proto-build path/to/src/protos path/to/src/generated

  7. Create src/lib.rs with the following contents:

    mod generated;
    
    pub use generated::*;
    

Dependencies

~2.5MB
~48K SLoC