5 unstable releases

0.3.1 Oct 29, 2024
0.3.0 Sep 29, 2024
0.2.1 May 29, 2024
0.2.0 May 5, 2024
0.1.0 Aug 4, 2023

#1618 in Network programming

Download history 4/week @ 2024-08-01 150/week @ 2024-09-26 27/week @ 2024-10-03 9/week @ 2024-10-10 2/week @ 2024-10-17 106/week @ 2024-10-24 25/week @ 2024-10-31 1/week @ 2024-11-14

132 downloads per month

MIT license

130KB
3K SLoC

Steam-Vent

Interact with the Steam network via rust

Allows communication with the steam servers using the same protocol as the regular steam client.

State

While the project is still incomplete, the most forms of authenticating to steam are implemented and you can send requests for the protobuf definitions included in the project.

  • Anonymous sessions
  • Password Authentication
  • QR Authentication
  • Steam guard (device or email) confirmation
  • Device notification confirmation
  • Saved machine token confirmation
  • Sending and receiving raw messages
  • Making RPC calls over the connection
  • Communicating with the game coordinator
  • High level wrappers around the RPC calls
  • Allow using messages from protobufs not included in the project

Usage

Note that this project is still in early development and apis might see large changes.

use std::error::Error;
use steam_vent::connection::Connection;
use steam_vent::proto::steammessages_gameservers_steamclient::CGameServers_GetServerList_Request;
use steam_vent::serverlist::ServerList;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let server_list = ServerList::discover().await?;
    let mut connection = Connection::anonymous(server_list).await?;

    let mut req = CGameServers_GetServerList_Request::new();
    req.set_limit(16);
    req.set_filter(r"\appid\440".into());
    let some_tf2_servers = connection.service_method(req).await?;
    for server in some_tf2_servers.servers {
        println!(
            "{}({}) playing {}",
            String::from_utf8_lossy(server.name()),
            server.addr(),
            server.map()
        );
    }

    Ok(())
}

Credit

This is in large parts inspired by and based of @DoctorMcKay's work on SteamUser, massive credits go to all who worked on that.

Dependencies

~48–67MB
~1.5M SLoC