mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 11:00:19 +00:00
added vendored cargo feature
This commit is contained in:
parent
d5efd03bcd
commit
69590f6986
2 changed files with 12 additions and 2 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -804,7 +804,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "himalaya-lib"
|
name = "himalaya-lib"
|
||||||
version = "0.6.0"
|
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 = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -1383,6 +1383,15 @@ version = "0.1.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
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]]
|
[[package]]
|
||||||
name = "openssl-sys"
|
name = "openssl-sys"
|
||||||
version = "0.9.78"
|
version = "0.9.78"
|
||||||
|
@ -1392,6 +1401,7 @@ dependencies = [
|
||||||
"autocfg",
|
"autocfg",
|
||||||
"cc",
|
"cc",
|
||||||
"libc",
|
"libc",
|
||||||
|
"openssl-src",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
"vcpkg",
|
"vcpkg",
|
||||||
]
|
]
|
||||||
|
|
|
@ -19,6 +19,7 @@ section = "mail"
|
||||||
imap-backend = ["himalaya-lib/imap-backend"]
|
imap-backend = ["himalaya-lib/imap-backend"]
|
||||||
smtp-sender = ["himalaya-lib/smtp-sender"]
|
smtp-sender = ["himalaya-lib/smtp-sender"]
|
||||||
notmuch-backend = ["himalaya-lib/notmuch-backend"]
|
notmuch-backend = ["himalaya-lib/notmuch-backend"]
|
||||||
|
vendored = ["himalaya-lib/vendored"]
|
||||||
default = ["imap-backend", "smtp-sender"]
|
default = ["imap-backend", "smtp-sender"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -38,7 +39,6 @@ email_address = "0.2.4"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
erased-serde = "0.3"
|
erased-serde = "0.3"
|
||||||
himalaya-lib = { git = "https://git.sr.ht/~soywod/himalaya-lib", branch = "develop" }
|
himalaya-lib = { git = "https://git.sr.ht/~soywod/himalaya-lib", branch = "develop" }
|
||||||
# himalaya-lib = { path = "/home/soywod/sourcehut/himalaya-lib" }
|
|
||||||
indicatif = "0.17"
|
indicatif = "0.17"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
|
|
Loading…
Reference in a new issue