tuimail/Cargo.toml
2026-03-02 14:58:44 +01:00

35 lines
No EOL
980 B
TOML

[workspace]
members = [".", "proton-bridge"]
[package]
name = "tuimail"
version = "0.1.0"
edition = "2024"
[dependencies]
proton-bridge = { path = "proton-bridge", optional = false }
ratatui = "0.30"
crossterm = "0.29"
imap = "2.4"
native-tls = "0.2"
serde = { version = "1.0", features = ["derive"] }
toml = "1.0"
chrono = "0.4"
mailparse = "0.16"
fast_html2md = "0.0"
tui-markdown = "0.3"
quoted_printable = "0.5"
regex = "1"
lettre = { version = "0.11", default-features = false, features = ["smtp-transport", "native-tls", "builder"] }
dirs = "6.0"
rand = { version = "0.8", features = ["getrandom"] }
aes-gcm = "0.10"
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3", features = ["apple-native"] }
[target.'cfg(target_os = "linux")'.dependencies]
keyring = { version = "3", features = ["linux-native-sync-persistent", "crypto-rust"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3", features = ["windows-native"] }