mirror of
https://github.com/chatmail/core.git
synced 2026-05-22 16:26:31 +03:00
Sort dependencies in Cargo.toml
This commit is contained in:
30
Cargo.toml
30
Cargo.toml
@@ -29,12 +29,11 @@ format-flowed = { path = "./format-flowed" }
|
|||||||
ratelimit = { path = "./deltachat-ratelimit" }
|
ratelimit = { path = "./deltachat-ratelimit" }
|
||||||
|
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
async-channel = "1.8.0"
|
||||||
async-imap = { git = "https://github.com/async-email/async-imap", branch = "master", default-features = false, features = ["runtime-tokio"] }
|
async-imap = { git = "https://github.com/async-email/async-imap", branch = "master", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-native-tls = { version = "0.4", default-features = false, features = ["runtime-tokio"] }
|
async-native-tls = { version = "0.4", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-smtp = { version = "0.8", default-features = false, features = ["runtime-tokio"] }
|
async-smtp = { version = "0.8", default-features = false, features = ["runtime-tokio"] }
|
||||||
trust-dns-resolver = "0.22"
|
async_zip = { version = "0.0.9", default-features = false, features = ["deflate"] }
|
||||||
tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }
|
|
||||||
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
base64 = "0.21"
|
base64 = "0.21"
|
||||||
bitflags = "1.3"
|
bitflags = "1.3"
|
||||||
@@ -43,8 +42,11 @@ crossbeam-queue = "0.3"
|
|||||||
email = { git = "https://github.com/deltachat/rust-email", branch = "master" }
|
email = { git = "https://github.com/deltachat/rust-email", branch = "master" }
|
||||||
encoded-words = { git = "https://github.com/async-email/encoded-words", branch = "master" }
|
encoded-words = { git = "https://github.com/async-email/encoded-words", branch = "master" }
|
||||||
escaper = "0.1"
|
escaper = "0.1"
|
||||||
|
fast-socks5 = "0.8"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
futures-lite = "1.12.0"
|
||||||
hex = "0.4.0"
|
hex = "0.4.0"
|
||||||
|
humansize = "2"
|
||||||
image = { version = "0.24.5", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] }
|
image = { version = "0.24.5", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] }
|
||||||
kamadak-exif = "0.5"
|
kamadak-exif = "0.5"
|
||||||
lettre_email = { git = "https://github.com/deltachat/lettre", branch = "master" }
|
lettre_email = { git = "https://github.com/deltachat/lettre", branch = "master" }
|
||||||
@@ -58,9 +60,11 @@ once_cell = "1.17.0"
|
|||||||
percent-encoding = "2.2"
|
percent-encoding = "2.2"
|
||||||
pgp = { version = "0.9", default-features = false }
|
pgp = { version = "0.9", default-features = false }
|
||||||
pretty_env_logger = { version = "0.4", optional = true }
|
pretty_env_logger = { version = "0.4", optional = true }
|
||||||
|
qrcodegen = "1.7.0"
|
||||||
quick-xml = "0.27"
|
quick-xml = "0.27"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
regex = "1.7"
|
regex = "1.7"
|
||||||
|
reqwest = { version = "0.11.14", features = ["json"] }
|
||||||
rusqlite = { version = "0.28", features = ["sqlcipher"] }
|
rusqlite = { version = "0.28", features = ["sqlcipher"] }
|
||||||
rust-hsluv = "0.1"
|
rust-hsluv = "0.1"
|
||||||
sanitize-filename = "0.4"
|
sanitize-filename = "0.4"
|
||||||
@@ -71,21 +75,17 @@ sha2 = "0.10"
|
|||||||
smallvec = "1"
|
smallvec = "1"
|
||||||
strum = "0.24"
|
strum = "0.24"
|
||||||
strum_macros = "0.24"
|
strum_macros = "0.24"
|
||||||
thiserror = "1"
|
|
||||||
toml = "0.7"
|
|
||||||
url = "2"
|
|
||||||
uuid = { version = "1", features = ["serde", "v4"] }
|
|
||||||
fast-socks5 = "0.8"
|
|
||||||
humansize = "2"
|
|
||||||
qrcodegen = "1.7.0"
|
|
||||||
tagger = "4.3.4"
|
tagger = "4.3.4"
|
||||||
textwrap = "0.16.0"
|
textwrap = "0.16.0"
|
||||||
async-channel = "1.8.0"
|
thiserror = "1"
|
||||||
futures-lite = "1.12.0"
|
|
||||||
tokio-stream = { version = "0.1.11", features = ["fs"] }
|
|
||||||
tokio-io-timeout = "1.2.0"
|
tokio-io-timeout = "1.2.0"
|
||||||
reqwest = { version = "0.11.14", features = ["json"] }
|
tokio-stream = { version = "0.1.11", features = ["fs"] }
|
||||||
async_zip = { version = "0.0.9", default-features = false, features = ["deflate"] }
|
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
||||||
|
tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }
|
||||||
|
toml = "0.7"
|
||||||
|
trust-dns-resolver = "0.22"
|
||||||
|
url = "2"
|
||||||
|
uuid = { version = "1", features = ["serde", "v4"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ansi_term = "0.12.0"
|
ansi_term = "0.12.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user