32 个版本
0.8.1 | 2024年4月21日 |
---|---|
0.7.1 | 2024年2月1日 |
0.7.0-beta | 2023年7月21日 |
0.6.3 | 2023年3月28日 |
0.3.4 | 2022年11月14日 |
在 网页编程 中排名 640
每月下载量 347
在 papa 中使用
55KB
1.5K SLoC
thermite
Rust 封装,用于管理 Northstar 并与 Thunderstore 交互
lib.rs
:
基本用法
use thermite::prelude::*;
use std::io::Cursor;
fn example() {
let index = get_package_index().unwrap();
if let Some(md) = index.iter().find(|e| e.name == "server_utilities") {
let latest = md.get_latest().unwrap();
let mut zipped = vec![];
download(&mut zipped, &latest.url).unwrap();
install_mod(&latest.full_name, Cursor::new(zipped), "packages").unwrap();
}
}
依赖
~7–22MB
~297K SLoC