6 个版本 (3 个重大变更)
0.4.1 | 2024年5月1日 |
---|---|
0.4.0 | 2024年5月1日 |
0.3.1 | 2024年3月26日 |
0.2.0 | 2024年3月20日 |
0.1.0 | 2024年3月14日 |
#88 in #com
18KB
308 代码行
protontweaks-api-rs
Rust 与 https://api.protontweaks.com 交互的 API
用法
// ...
const api = Protontweaks::new();
async fn my_code() -> Result<(), String> {
let apps: Vec<MicroApp> = api.try_apps().await?;
let apps: Vec<MicroApp> = api.apps().await;
let app: App = api.try_app("644930").await?;
let app: App = api.app("644930").await;
let system_tweaks: SystemTweaks = app.flatten(); // This detects the local gpu and merges gpu-specific tweaks into the top level tweaks
Ok(())
}
依赖项
~6–43MB
~666K SLoC