mirror of
https://codeberg.org/steam-vent/proto.git
synced 2026-08-02 12:14:48 +02:00
initial import from steam-vent repo
This commit is contained in:
commit
d936a6049b
237 changed files with 607341 additions and 0 deletions
23
Cargo.toml
Normal file
23
Cargo.toml
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue