32 lines
760 B
TOML
32 lines
760 B
TOML
[package]
|
|
name = "buzz"
|
|
version = "1.0.2"
|
|
|
|
description = "A simple system tray application for notifying about unseen e-mail"
|
|
readme = "README.md"
|
|
|
|
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
|
|
|
|
homepage = "https://github.com/jonhoo/buzz"
|
|
repository = "https://github.com/jonhoo/buzz.git"
|
|
|
|
keywords = ["email","cli","systray","notification"]
|
|
categories = ["command-line-utilities", "email"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[profile.release]
|
|
debug=true
|
|
|
|
[dependencies]
|
|
#imap = "0.3.2"
|
|
# Fixes for https://github.com/mattnenterprise/rust-imap/issues/38
|
|
imap = { git = "https://github.com/jonhoo/rust-imap.git", branch = "better-io" }
|
|
openssl = "0.9.14"
|
|
systray = "0.2.0"
|
|
mailparse = "0.5.1"
|
|
toml = "0.4.2"
|
|
xdg = "2.1.0"
|
|
notify-rust = "3.4.0"
|
|
rayon = "0.8.2"
|