Gaetan Lepage 2024-03-19 23:13:44 +01:00
parent 857c76e032
commit af9b4a5477
2 changed files with 11 additions and 3 deletions

View file

@ -630,6 +630,12 @@ dependencies = [
"syn 2.0.48",
]
[[package]]
name = "dotenvy"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
[[package]]
name = "either"
version = "1.9.0"
@ -1795,7 +1801,7 @@ dependencies = [
[[package]]
name = "rye"
version = "0.29.0"
version = "0.30.0"
dependencies = [
"age",
"anyhow",
@ -1808,6 +1814,7 @@ dependencies = [
"curl",
"decompress",
"dialoguer",
"dotenvy",
"flate2",
"fslock",
"git-testament",

View file

@ -12,13 +12,13 @@
rustPlatform.buildRustPackage rec {
pname = "rye";
version = "0.29.0";
version = "0.30.0";
src = fetchFromGitHub {
owner = "mitsuhiko";
repo = "rye";
rev = "refs/tags/${version}";
hash = "sha256-rNXzhJazOi815dhqviqtfSTM60Y/5ncKBVn2YhqcKJM=";
hash = "sha256-a4u8dBqp9zs4RW7tXN8HjGzvjYFyDUJzEFMxMoGhu4E=";
};
cargoLock = {
@ -67,6 +67,7 @@ rustPlatform.buildRustPackage rec {
"--skip=test_config_incompatible_format_and_show_path"
"--skip=test_config_save_missing_folder"
"--skip=test_config_show_path"
"--skip=test_dotenv"
"--skip=test_empty_sync"
"--skip=test_fetch"
"--skip=test_init_default"