diff --git a/Cargo.lock b/Cargo.lock index 97a9044..402fda3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1174,7 +1174,7 @@ dependencies = [ "http-lib", "imap-client", "imap-next", - "keyring-lib 1.0.2 (git+https://github.com/pimalaya/core)", + "keyring-lib", "mail-builder", "mail-parser", "maildirs", @@ -2085,19 +2085,6 @@ dependencies = [ "zbus", ] -[[package]] -name = "keyring-lib" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56921558c465f33d51c6047b86b76764cd2a86b69b99653b43ba1f9a32965218" -dependencies = [ - "keyring", - "once_cell", - "thiserror 1.0.69", - "tokio", - "tracing", -] - [[package]] name = "keyring-lib" version = "1.0.2" @@ -2381,7 +2368,7 @@ dependencies = [ "clap_mangen", "color-eyre", "email-lib", - "keyring-lib 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "keyring-lib", "pimalaya-tui", "serde", "shellexpand-utils", @@ -3486,7 +3473,7 @@ name = "secret-lib" version = "1.0.0" source = "git+https://github.com/pimalaya/core#3e294453e5a34475e5197c1ccf3b534d221ad26f" dependencies = [ - "keyring-lib 1.0.2 (git+https://github.com/pimalaya/core)", + "keyring-lib", "process-lib", "serde", "thiserror 1.0.69", diff --git a/Cargo.toml b/Cargo.toml index 9960f72..a5df64b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,6 +48,7 @@ tracing = "0.1" [patch.crates-io] email-lib = { git = "https://github.com/pimalaya/core" } +keyring-lib = { git = "https://github.com/pimalaya/core" } oauth-lib = { git = "https://github.com/pimalaya/core" } pimalaya-tui = { git = "https://github.com/pimalaya/tui" } process-lib = { git = "https://github.com/pimalaya/core" } diff --git a/package.nix b/package.nix index 1d97785..4cfbd73 100644 --- a/package.nix +++ b/package.nix @@ -16,8 +16,8 @@ let version = "1.0.0"; - hash = "sha256-NrWBg0sjaz/uLsNs8/T4MkUgHOUvAWRix1O5usKsw6o="; - cargoHash = "sha256-YS8IamapvmdrOPptQh2Ef9Yold0IK1XIeGs0kDIQ5b8="; + hash = ""; + cargoHash = ""; in rustPlatform.buildRustPackage { @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage { src = fetchFromGitHub { inherit hash; - owner = "soywod"; + owner = "pimalaya"; repo = "mirador"; rev = "v${version}"; };