-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import SFSU from '$/lib/projects/sfsu.md'; | ||
|
||
export default function Page() { | ||
return <SFSU />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
featured: true | ||
emoji: ⚡ | ||
title: Stupid Fast Scoop Utils | ||
description: Super fast replacements and additions to scoop commands written in Rust | ||
pubDate: Oct 28 2022 | ||
repo: winpax/sfsu | ||
heroImage: https://repository-images.githubusercontent.com/558838965/5a08ad32-112c-42a7-b0b8-212270cd30ce | ||
shields: | ||
- alt: Github Workflow Status | ||
src: https://img.shields.io/github/actions/workflow/status/winpax/sfsu/build.yml | ||
- alt: dependency status | ||
href: https://deps.rs/repo/github/winpax/sfsu | ||
src: https://deps.rs/repo/github/winpax/sfsu/status.svg | ||
- alt: GitHub all releases | ||
src: https://img.shields.io/github/downloads/winpax/sfsu/total | ||
- alt: GitHub | ||
src: https://img.shields.io/github/license/winpax/sfsu | ||
- alt: Scoop version (extras bucket) | ||
src: https://img.shields.io/scoop/v/sfsu?bucket=extras | ||
download: | ||
src: github | ||
infoExtractor: /sfsu-(?<arch>.+).exe/ | ||
os: | ||
- windows | ||
arch: | ||
- x64 | ||
- x86 | ||
- arm64 | ||
--- | ||
|
||
Super **⚡ fast ⚡** replacements and additions to [Scoop](https://scoop.sh) commands written in the [Rust programming language](https://www.rust-lang.org/). | ||
|
||
It can override the existing [Scoop](https://scoop.sh) install for all commands that it has, using the [hooks](https://github.com/winpax/sfsu#hook). | ||
|
||
More in depth benchmarking information can be found in the [benchmarking section of the README](https://github.com/winpax/sfsu#benchmarks-1), but to summarize, it is multiple [orders of magnitude](https://g.co/kgs/KqoK2G) faster than default [Scoop](https://scoop.sh). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
emoji: ✨ | ||
title: Sprinkles | ||
description: A Rust based abstraction layer for Scoop. | ||
pubDate: May 20 2024 | ||
repo: winpax/sprinkles | ||
heroImage: https://cordor.dev/api/og?title=Sprinkles&image=https%3A%2F%2Fcordor.dev%2Femojis%2Fsparkles.svg&backgroundColor=rgba(0%2C0%2C0%2C0) | ||
profileImage: https://cordor.dev/emojis/sparkles.svg | ||
shields: | ||
- alt: Github Workflow Status | ||
src: https://img.shields.io/github/actions/workflow/status/winpax/sprinkles/build.yml | ||
- alt: dependency status | ||
href: https://deps.rs/repo/github/winpax/sprinkles | ||
src: https://deps.rs/crate/sprinkles-rs/latest/status.svg | ||
- alt: Crates.io Total Downloads | ||
src: https://img.shields.io/crates/d/sprinkles-rs | ||
href: https://crates.io/crates/sprinkles-rs | ||
- alt: License | ||
src: https://img.shields.io/crates/l/sprinkles-rs | ||
- alt: Crates.io MSRV | ||
src: https://img.shields.io/crates/msrv/sprinkles-rs | ||
href: https://crates.io/crates/sprinkles-rs | ||
--- | ||
|
||
Sprinkles is a library for interacting with [Scoop](https://scoop.sh), the Windows package manager, from [Rust](https://www.rust-lang.org/) code. | ||
|
||
It provides a high-level API for interacting with [Scoop](https://scoop.sh), such as installing, updating, and removing packages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type { MDXComponents } from 'mdx/types'; | ||
|
||
export function useMDXComponents(components: MDXComponents): MDXComponents { | ||
return { | ||
...components | ||
}; | ||
} |