chore: bump dependencies

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a69647ad9cfdd52eec7fa9ae4a184b9c8ea0d
This commit is contained in:
raf 2025-08-17 15:19:26 +03:00
commit 8800b69ef3
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View file

@ -218,9 +218,9 @@ dependencies = [
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.171" version = "0.2.175"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
[[package]] [[package]]
name = "log" name = "log"
@ -245,9 +245,9 @@ dependencies = [
[[package]] [[package]]
name = "nix" name = "nix"
version = "0.30.0" version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "537bc3c4a347b87fd52ac6c03a02ab1302962cfd93373c5d7a112cdc337854cc" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"cfg-if", "cfg-if",

View file

@ -12,8 +12,8 @@ name = "microfetch"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
nix = { version = "0.30", features = ["fs", "hostname", "feature"] } nix = { version = "0.30.1", default-features = false, features = ["fs", "hostname", "feature"] }
libc = "0.2" libc = "0.2.175"
[dev-dependencies] [dev-dependencies]
criterion = "0.7" criterion = "0.7"