9 个版本

0.1.8 2020 年 8 月 3 日
0.1.7 2020 年 7 月 28 日

#4 in #alliance

每月 25 次下载

MIT 许可证

33KB
591

RusTOA

crates.io Documentation MIT licensed Build Status

Rust 对 The Orange Alliance API 的绑定

一个用于访问 The Orange Alliance API 的 Crate。这个 Crate 使您能够轻松访问官方 First Tech Challenge API 并将其用于您的 Rust 项目中。

通过在您的 Cargo.toml 文件中添加以下内容进行安装:

[dependecies]
rustoa = "0.1.8"

to your Cargo.toml file.

要使用开发版本,请将以下内容添加到您的 Cargo.toml 文件中。这个版本可能是不稳定的。

[dependencies]
rustoa = { git = "https://github.com/karx1/rustoa" }

to your Cargo.toml file. This version might be unstable.

以下是一个简单的示例

use rustoa::{Client, Season};

let client = Client::new("api_key");
let team = client.team(16405);
println!("{}", team.season_wins(Season::SkyStone));

依赖项

~4.5–9.5MB
~207K SLoC