sidx/Cargo.toml
SomeoneSerge 65326b2dcb init
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
```

npins: init
2025-04-20 00:13:35 +00:00

15 lines
302 B
TOML

[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"