inboxid/Cargo.toml

20 lines
659 B
TOML
Raw Normal View History

2021-03-27 15:54:39 +00:00
[package]
name = "inboxid"
version = "0.1.0"
authors = ["Arne Keller <arne.keller@posteo.de>"]
edition = "2018"
2021-03-27 18:17:10 +00:00
license = "GPL-3.0-or-later"
2021-03-27 15:54:39 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
imap = { version = "2.4.1", default-features = false }
itertools = "0.10.0"
2021-03-27 18:17:10 +00:00
maildir = { path = "../maildir" }
2021-03-27 19:37:49 +00:00
mailparse = "0.13.2"
2021-03-27 15:54:39 +00:00
rustls-connector = "0.13.1"
2021-03-28 12:27:37 +00:00
ascii_table = { git = "https://gitlab.com/arnekeller/ascii-table.git", branch = "master" }
chrono = "0.4.19"
2021-03-29 07:19:48 +00:00
# remove when 0.24.3 is released
rusqlite = { git = "https://github.com/rusqlite/rusqlite", branch = "master", features = ["bundled"] }