Files
rs-pop-imap-importer/Cargo.toml
T
herel 487e7395b5 build(deps): Upgrade all dependencies and eliminate unsound chain
Bump clap to 4.6.6, imap to 3.0.0-alpha.15 and native-tls to 0.2.18.
The imap upgrade removes the unsound lexical-core 0.7.6 dependency
inherited via nom 5 (RUSTSEC-2023-0086), leaving cargo audit clean.
Drop the unused imap-proto dependency and migrate to the imap 3.x
ClientBuilder and AppendCmd APIs.
2026-08-28 15:05:21 +02:00

23 lines
384 B
TOML

[package]
name = "rs_pop_imap_importer"
version = "0.6.0"
edition = "2024"
[lib]
name = "rs_pop_imap_importer"
path = "src/lib.rs"
[[bin]]
name = "pop-to-imap"
path = "src/main.rs"
[[bin]]
name = "normalize-imap"
path = "src/bin/normalize_imap.rs"
[dependencies]
clap = { version = "4.6.6", features = ["derive"] }
dotenvy = "0.15.7"
imap = "3.0.0-alpha.15"
native-tls = "0.2.18"