2022-05-09 17:15:52 +00:00
|
|
|
[package]
|
|
|
|
name = "boitalettres"
|
|
|
|
version = "0.0.1"
|
|
|
|
license = "BSD-3-Clause"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "1.1"
|
2022-05-19 10:39:20 +00:00
|
|
|
|
|
|
|
miette = "4.7"
|
2022-05-09 17:15:52 +00:00
|
|
|
thiserror = "1.0"
|
2022-05-19 10:39:20 +00:00
|
|
|
|
2022-05-09 17:15:52 +00:00
|
|
|
tracing = "0.1"
|
2022-05-19 10:39:20 +00:00
|
|
|
tracing-futures = "0.2"
|
2022-05-09 17:15:52 +00:00
|
|
|
|
|
|
|
# IMAP
|
|
|
|
imap-codec = "0.5"
|
|
|
|
|
|
|
|
# Async
|
|
|
|
async-compat = "0.2"
|
|
|
|
futures = "0.3"
|
|
|
|
pin-project = "1.0"
|
2022-05-19 10:39:20 +00:00
|
|
|
|
2022-05-09 17:15:52 +00:00
|
|
|
tokio = { version = "1.18", features = ["full"] }
|
|
|
|
tokio-tower = "0.6"
|
|
|
|
tower = { version = "0.4", features = ["full"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-19 10:39:20 +00:00
|
|
|
miette = { version = "4.7", features = ["fancy"] }
|
|
|
|
|
2022-05-09 17:15:52 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2022-05-13 15:52:30 +00:00
|
|
|
console-subscriber = "0.1"
|