6 releases

0.15.2 Jun 5, 2024
0.15.1 Jun 5, 2024
0.14.0 May 24, 2024
0.13.6 May 20, 2024

#157 in Configuration

Download history 450/week @ 2024-05-20 38/week @ 2024-05-27 365/week @ 2024-06-03 5/week @ 2024-06-10

858 downloads per month

MIT/Apache

300KB
6.5K SLoC

Sprinkles Library

Build & Test Crates.io Version docs.rs dependency status Crates.io Total Downloads Crates.io License Crates.io MSRV

View the latest documentation at docs.rs, or on Github Pages.

Please note this library is currently in an early stage of development, and is not recommended for use in production. There are likely to be breaking changes in the future, and there is no guarantee that the API will remain stable until v1.0.

Sprinkles is a library for interacting with Scoop, the Windows package manager.

It provides a high-level API for interacting with Scoop, such as installing, updating, and removing packages.

Example Usage

If you want a more in depth example of how to use the library, check out the sfsu project.

use sprinkles::contexts::{User, ScoopContext};

let ctx = User::new();

let apps = ctx.installed_apps().unwrap();

println!("You have {} apps installed", apps.len());

Running Benchmarks

The benchmarks rely on the large-file.bin file, which should be a large amount (>100MB) of random data.

To generate the file, run the following command (feel free to change the size to your liking):

Windows

Install genfile and run the following command:

genfile --size 512mb -o benches/large-file.bin --random

Linux

dd if=/dev/urandom of=benches/large-file.bin bs=1M count=512

Supported Platforms

I will maintain support for the MSRV mentioned in Cargo.toml, although it may change across a major version.

Windows is the only supported platform at the moment, and this will likely not change, given that Scoop is only available on Windows.

Made with 💗 by Juliette Cordor

Dependencies

~184MB
~3M SLoC