Gaetan Lepage 2024-01-21 14:42:41 +01:00
parent 43e4d9e2eb
commit e3839f3e90
2 changed files with 14 additions and 3 deletions

View File

@ -1781,7 +1781,7 @@ dependencies = [
[[package]]
name = "rye"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"age",
"anyhow",
@ -1827,6 +1827,7 @@ dependencies = [
"whattheshell",
"which",
"winapi",
"winreg",
"zip",
"zstd",
]
@ -2654,6 +2655,16 @@ dependencies = [
"memchr",
]
[[package]]
name = "winreg"
version = "0.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
[[package]]
name = "x25519-dalek"
version = "1.1.1"

View File

@ -12,13 +12,13 @@
rustPlatform.buildRustPackage rec {
pname = "rye";
version = "0.18.0";
version = "0.19.0";
src = fetchFromGitHub {
owner = "mitsuhiko";
repo = "rye";
rev = "refs/tags/${version}";
hash = "sha256-IxR9FUzX4i9QeQ2vDtwMC36nSvYuKTSLnhJl+r7fTOo=";
hash = "sha256-c5PIJMqe5ljNy582LuYJK18ixrphVhYRtiF5X5CB20Y=";
};
cargoLock = {