use git version of secret and keyring libs

This commit is contained in:
Clément DOUIN 2024-09-20 10:24:26 +02:00
parent 24c9e3b384
commit 55ecb547c1
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
2 changed files with 12 additions and 7 deletions

10
Cargo.lock generated
View file

@ -2264,8 +2264,7 @@ dependencies = [
[[package]]
name = "keyring-lib"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb0a843c3edec50d5f5541e72c4068ab5bc273efa16b4ba51c5825a872ad8a9a"
source = "git+https://github.com/pimalaya/core#2767c389b4ad3fb738c6d2d6348304f937643cee"
dependencies = [
"keyring",
"log",
@ -3708,8 +3707,7 @@ dependencies = [
[[package]]
name = "secret-lib"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d34288431a1ca4930e49cca081ce9368dc457eda755289cedf8cf32464a25a"
source = "git+https://github.com/pimalaya/core#2767c389b4ad3fb738c6d2d6348304f937643cee"
dependencies = [
"keyring-lib",
"log",
@ -4509,9 +4507,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
[[package]]
name = "unicode-width"
version = "0.1.13"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
[[package]]
name = "untrusted"

View file

@ -79,9 +79,16 @@ url = "2.2"
uuid = { version = "0.8", features = ["v4"] }
[patch.crates-io]
# IMAP
imap-next = { git = "https://github.com/duesee/imap-next" }
imap-client = { git = "https://github.com/pimalaya/imap-client" }
# Pimalaya core
email-lib = { git = "https://github.com/pimalaya/core" }
keyring-lib = { git = "https://github.com/pimalaya/core" }
oauth-lib = { git = "https://github.com/pimalaya/core" }
process-lib = { git = "https://github.com/pimalaya/core" }
email-lib = { git = "https://github.com/pimalaya/core" }
secret-lib = { git = "https://github.com/pimalaya/core" }
# Pimalaya TUI
pimalaya-tui = { git = "https://github.com/pimalaya/tui" }