-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
35 lines (29 loc) · 893 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "buzz"
version = "2.0.0"
edition = "2021"
authors = ["Jon Gjengset <[email protected]>"]
description = "A simple system tray application for notifying about unseen e-mail"
rust-version = "1.67.1"
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 OR Apache-2.0"
[profile.release]
debug=true
[features]
default = ["systray"]
systray = ["tray-item"]
[dependencies]
anyhow = "1"
imap = { version = "=3.0.0-alpha.14", features = ["rustls-tls"] }
mailparse = "0.14"
toml = "0.8"
notify-rust = "4.0.0-beta.2"
rayon = "1.0.0"
askama_escape = "0.10"
chrono = "0.4"
directories-next = "2"
tray-item = { version = "0.10.0", features=["ksni"], optional = true}
serde = { version = "1.0.196", features = ["derive"] }