fix smtp cmd password issue

This commit is contained in:
Clément DOUIN 2023-05-08 16:07:52 +02:00
parent f4facd1761
commit f8eed6ad14
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
2 changed files with 5 additions and 9 deletions

10
Cargo.lock generated
View file

@ -2101,7 +2101,7 @@ dependencies = [
[[package]]
name = "pimalaya-email"
version = "0.7.1"
source = "git+https://git.sr.ht/~soywod/pimalaya#524f8049566845369f55300a20843c48dfe7a620"
source = "git+https://git.sr.ht/~soywod/pimalaya#08c41acaee3b96a96d3f2b0cb15517466fe17a00"
dependencies = [
"ammonia",
"chrono",
@ -2142,7 +2142,7 @@ dependencies = [
[[package]]
name = "pimalaya-keyring"
version = "0.0.1"
source = "git+https://git.sr.ht/~soywod/pimalaya#524f8049566845369f55300a20843c48dfe7a620"
source = "git+https://git.sr.ht/~soywod/pimalaya#08c41acaee3b96a96d3f2b0cb15517466fe17a00"
dependencies = [
"keyring",
"log",
@ -2152,7 +2152,7 @@ dependencies = [
[[package]]
name = "pimalaya-oauth2"
version = "0.0.1"
source = "git+https://git.sr.ht/~soywod/pimalaya#524f8049566845369f55300a20843c48dfe7a620"
source = "git+https://git.sr.ht/~soywod/pimalaya#08c41acaee3b96a96d3f2b0cb15517466fe17a00"
dependencies = [
"log",
"oauth2",
@ -2164,7 +2164,7 @@ dependencies = [
[[package]]
name = "pimalaya-process"
version = "0.0.1"
source = "git+https://git.sr.ht/~soywod/pimalaya#524f8049566845369f55300a20843c48dfe7a620"
source = "git+https://git.sr.ht/~soywod/pimalaya#08c41acaee3b96a96d3f2b0cb15517466fe17a00"
dependencies = [
"log",
"thiserror",
@ -2173,7 +2173,7 @@ dependencies = [
[[package]]
name = "pimalaya-secret"
version = "0.0.1"
source = "git+https://git.sr.ht/~soywod/pimalaya#524f8049566845369f55300a20843c48dfe7a620"
source = "git+https://git.sr.ht/~soywod/pimalaya#08c41acaee3b96a96d3f2b0cb15517466fe17a00"
dependencies = [
"log",
"pimalaya-keyring",

View file

@ -55,10 +55,6 @@ pimalaya-email = { git = "https://git.sr.ht/~soywod/pimalaya" }
pimalaya-keyring = { git = "https://git.sr.ht/~soywod/pimalaya" }
pimalaya-process = { git = "https://git.sr.ht/~soywod/pimalaya" }
pimalaya-secret = { git = "https://git.sr.ht/~soywod/pimalaya" }
# pimalaya-email = { path = "/home/soywod/sourcehut/pimalaya/email" }
# pimalaya-keyring = { path = "/home/soywod/sourcehut/pimalaya/keyring" }
# pimalaya-process = { path = "/home/soywod/sourcehut/pimalaya/process" }
# pimalaya-secret = { path = "/home/soywod/sourcehut/pimalaya/secret" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shellexpand = "2.1"