Skip to content

rockneurotiko/pokemon-go-protobuf-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pokémon Go Protobuffers for Rust

Crates.io

Rust library for Pokemon Go proto buffer files, exported from the awesome protos of https://github.com/AeonLucid/POGOProtos

Usage

  • First of all, add this crate to your dependencies in the Cargo.toml file (replace * with the version you want):

    [dependencies]
    pokemon-go-protobuf = "*"
  • Use it!

    extern crate pokemon_go_protobuf;
    
    use pokemon_go_protobuf::POGOProtos_Data::PlayerData;
    
    pub fn main() {
        let x = PlayerData::new();
        // Start using the protobuf structs to encode/decode
    }

Update this repository

  • Install protobuf 3 and rust-protobuf (cargo install protobuf)

  • Update the submodule

    git submodule init
    git submodule update
    cd POGOProtos
    git pull
    cd ..
  • Execute ./compile.sh

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages