First attempt at both Rust and snix-castore.
I'll start by putting together a single-file CLI app,
no splitting modules out until needed, no separation of concerns.

Currently, just the fetching is implemented:

```
$ sidx pkgs/dev*/cuda-*/cuda/manifests/*.json
```
This commit is contained in:
Else, Someone 2025-04-15 14:07:49 +00:00
commit b35e7f30f7
13 changed files with 17753 additions and 0 deletions

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "sidx"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
clap = "4.5.35"
futures = "0.3.31"
reqwest = "0.12.15"
rusqlite = "0.34.0"
snix-castore = { version = "0.1.0", git = "https://git.snix.dev/snix/snix.git" }
tokio = "1.44.2"
tokio-util = "0.7.14"
url = "2.5.4"