diff --git a/Cargo.lock b/Cargo.lock index e3af5b4..4140dc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/Cargo.toml b/Cargo.toml index 7d47001..954cf14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"