initial import from steam-vent repo

This commit is contained in:
Robin Appelman 2025-09-07 22:35:14 +02:00
commit d936a6049b
237 changed files with 607341 additions and 0 deletions

23
Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
name = "steam-vent-proto"
version = "0.5.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021"
description = "Protobuf structs used by the Steam client protocol"
license = "MIT"
repository = "https://codeberg.org/steam-vent/proto"
[dependencies]
steam-vent-proto-common = { version = "0.5.0", path = "common" }
steam-vent-proto-steam = { version = "0.5.0", path = "./steam" }
steam-vent-proto-tf2 = { version = "0.5.0", optional = true }
steam-vent-proto-csgo = { version = "0.5.0", optional = true }
steam-vent-proto-dota2 = { version = "0.5.0", optional = true }
[features]
tf2 = ["steam-vent-proto-tf2"]
csgo = ["steam-vent-proto-csgo"]
dota2 = ["steam-vent-proto-dota2"]
[workspace]
exclude = ["build"]