skinport

Crates.ioskinport
lib.rsskinport
version0.1.1
sourcesrc
created_at2023-04-16 06:24:41.390263
updated_at2023-04-17 16:57:20.884948
descriptionSkinport API wrapper for Rust
homepage
repositoryhttps://github.com/WeirdPtr/skinport-rs
max_upload_size
id840370
size27,085
WeirdPtr (WeirdPtr)

documentation

README

Logo

skinport

Skinport API Bindings for the Rust Programming language.

Report Bug ยท Request Feature

About The Project

This crate aims to provide easy to use API bindings for the Skinport API.

Basic Example

#[tokio::main]
async fn main() {
    let client = Client::default();

    let items = client
        .get_sales_out_of_stock(Some(Game::CSGO), Some(Currency::EUR))
        .await;

    println!("{items:#?}");
}

Roadmap

See the open issues for a full list of proposed features (and known issues).

Contributing

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT or Apache 2 License. See LICENSE-MIT or LICENSE-APACHE for more information.

Commit count: 2

cargo fmt