34 releases

0.9.0 Mar 16, 2025
0.8.2 Sep 18, 2024
0.8.1 Apr 21, 2024
0.7.1 Feb 1, 2024
0.3.4 Nov 14, 2022

#537 in Compression


Used in papa

MIT license

59KB
1.5K SLoC

Basic Usage:

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();
    }    
}

thermite

codecov Build & Test docs.rs (with version)

Rust crate for managing Northstar and interacting with Thunderstore

Dependencies

~19–37MB
~569K SLoC