added vendored cargo feature

This commit is contained in:
Clément DOUIN 2023-03-11 17:33:57 +01:00
parent d5efd03bcd
commit 69590f6986
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
2 changed files with 12 additions and 2 deletions

12
Cargo.lock generated
View file

@ -804,7 +804,7 @@ dependencies = [
[[package]]
name = "himalaya-lib"
version = "0.6.0"
source = "git+https://git.sr.ht/~soywod/himalaya-lib?branch=develop#3aa70c4b48333aeb0088cc95d1bdfe0a50f34e23"
source = "git+https://git.sr.ht/~soywod/himalaya-lib?branch=develop#43c2b5dbde3e6f6c2e76ad36b25d123ab3098b10"
dependencies = [
"ammonia",
"chrono",
@ -1383,6 +1383,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.25.0+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.78"
@ -1392,6 +1401,7 @@ dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View file

@ -19,6 +19,7 @@ section = "mail"
imap-backend = ["himalaya-lib/imap-backend"]
smtp-sender = ["himalaya-lib/smtp-sender"]
notmuch-backend = ["himalaya-lib/notmuch-backend"]
vendored = ["himalaya-lib/vendored"]
default = ["imap-backend", "smtp-sender"]
[dev-dependencies]
@ -38,7 +39,6 @@ email_address = "0.2.4"
env_logger = "0.8"
erased-serde = "0.3"
himalaya-lib = { git = "https://git.sr.ht/~soywod/himalaya-lib", branch = "develop" }
# himalaya-lib = { path = "/home/soywod/sourcehut/himalaya-lib" }
indicatif = "0.17"
log = "0.4"
once_cell = "1.16.0"