treewide: break into multiple crates

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ifabe7af523ece1354b301b1a321659ee6a6a6964
This commit is contained in:
raf 2026-03-27 10:55:22 +03:00
commit 1408ca9f38
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
16 changed files with 348 additions and 394 deletions

22
microfetch/Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "microfetch"
description = "Microscopic fetch tool in Rust, for NixOS systems, with special emphasis on speed"
version.workspace = true
edition.workspace = true
authors.workspace = true
rust-version.workspace = true
license.workspace = true
readme = "../docs/README.md"
repository = "https://github.com/notashelf/microfetch"
publish = false
[dependencies]
microfetch-lib.workspace = true
[features]
hotpath = [ "microfetch-lib/hotpath" ]
hotpath-alloc = [ "microfetch-lib/hotpath-alloc" ]
hotpath-off = [ "microfetch-lib/hotpath-off" ]
[lints]
workspace = true