[package] name = "steam-vent-proto" version = "0.5.0" authors = ["Robin Appelman "] edition = "2021" description = "Protobuf structs used by the Steam client protocol" license = "MIT" repository = "https://github.com/icewind1991/steam-vent" [dependencies] protobuf = { version = "=3.5.1", features = ["with-bytes"] } 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", path = "./tf2", optional = true } steam-vent-proto-csgo = { version = "0.5.0", path = "./csgo", optional = true } steam-vent-proto-dota2 = { version = "0.5.0", path = "./dota2", optional = true } [features] tf2 = ["steam-vent-proto-tf2"] csgo = ["steam-vent-proto-csgo"] dota2 = ["steam-vent-proto-dota2"]