2022-05-05 23:10:35 +00:00
|
|
|
[package]
|
|
|
|
name = "ynabifier"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8.24"
|
2022-05-08 18:01:16 +00:00
|
|
|
derive-getters = "0.2.0"
|
|
|
|
async-imap = "0.5.0"
|
|
|
|
mailparse = "0.13.8"
|
|
|
|
tokio = { version = "1.18", features = ["full"] }
|
2022-05-11 02:47:02 +00:00
|
|
|
thiserror = "1.0"
|
|
|
|
log = "0.4.17"
|
|
|
|
simplelog = "0.12.0"
|
2022-05-16 01:20:58 +00:00
|
|
|
async-trait = "0.1.53"
|
2022-05-11 02:47:02 +00:00
|
|
|
|
2022-05-08 18:01:16 +00:00
|
|
|
# For annoying reasons, we must pin exactly the same versions as async-imap if we want to use
|
|
|
|
# their types.
|
|
|
|
# https://github.com/async-email/async-imap/pull/57
|
|
|
|
futures = "0.3.15"
|
|
|
|
async-native-tls = { version = "0.3.3" }
|
|
|
|
async-std = { version = "1.8.0", default-features = false, features = ["std"] }
|
2022-05-16 01:20:58 +00:00
|
|
|
stop-token = "0.7"
|
2022-05-05 23:10:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
textwrap = "0.15.0"
|
2022-05-21 14:22:50 +00:00
|
|
|
futures-timer = "3.0"
|