Compare commits

..

No commits in common. "3988436fa922a2e85e9c107ca44fd54d9b559d9c" and "d2ae1a9af76a8a5fc7b8f611c76b9242eceeead9" have entirely different histories.

4 changed files with 13 additions and 10 deletions

8
Cargo.lock generated
View file

@ -441,9 +441,9 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
[[package]]
name = "hotpath"
version = "0.10.1"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dc168af8ef9f2f803292b6eca3bba81daca09df4f019f1d589d4392cc4a84e9"
checksum = "3554f9fc054c95f68e9f31196ca3aa77c6ce299f2e5877788e68168d01b7cfab"
dependencies = [
"arc-swap",
"base64",
@ -469,9 +469,9 @@ dependencies = [
[[package]]
name = "hotpath-macros"
version = "0.10.1"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2bcbc49dbb85d4226c95a61ab989247ceddb4901c679bcfcab39e586c3e26ad"
checksum = "0326ae0362362c976fba738ba2dd585e63bf92264b7070f20219453c9a8cd6ae"
dependencies = [
"proc-macro2",
"quote",

View file

@ -4,7 +4,7 @@ description = "Microscopic fetch tool in Rust, for NixOS systems, with special
version = "0.4.13"
edition = "2024"
authors = [ "NotAShelf <raf@notashelf.dev>" ]
rust-version = "1.91.0"
rust-version = "1.90"
readme = "./docs/README.md"
repository = "https://github.com/notashelf/microfetch"
license = "GPL-3.0"
@ -18,7 +18,7 @@ name = "microfetch"
path = "src/main.rs"
[dependencies]
hotpath = { optional = true, version = "0.10.1" }
hotpath = { optional = true, version = "0.9.3" }
libc = "0.2.180"
[dev-dependencies]

9
flake.lock generated
View file

@ -2,11 +2,14 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1770562336,
"narHash": "sha256-ub1gpAONMFsT/GU2hV6ZWJjur8rJ6kKxdm9IlCT0j84=",
"lastModified": 1743359643,
"narHash": "sha256-RkyJ9a67s0zEIz4O66TyZOIGh4TFZ4dKHKMgnxZCh2I=",
"lastModified": 1763381801,
"narHash": "sha256-325fR0JmHW7B74/gHPv/S9w1Rfj/M2HniwQFUwdrZ9k=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "d6c71932130818840fc8fe9509cf50be8c64634f",
"rev": "ca77b4bc80e558ce59f2712fdb276f90c0ee309a",
"rev": "46931757ea8bdbba25c076697f8e73b8dc39fef5",
"type": "github"
},
"original": {

View file

@ -4,7 +4,7 @@
stdenvAdapters,
rustPlatform,
llvm,
useMold ? stdenv.isLinux,
useMold ? stdenv.isLinux && !stdenv.hostPlatform.isAarch,
}: let
toml = (lib.importTOML ../Cargo.toml).package;
pname = toml.name;