-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 892 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
[package]
name = "you-have-mail-cli"
version = "0.3.0"
edition = "2021"
authors = ["Leander Beernaert <lbb-dev@pm.me>"]
license = "AGPL-3.0-only"
categories = ["email", "command-line-utilities"]
readme = "README.md"
repository= "https://github.com/LeanderBB/you-have-mail-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
you-have-mail-common = {git= "https://github.com/LeanderBB/you-have-mail-common" }
config = "0.13"
dirs = "5.0.0"
ctrlc = "3"
anyhow = "1"
keyring = {version = "2", optional = true}
log = "0.4"
clap = {version ="4", features = ["derive"]}
serde = {version = "1", features = ["derive"]}
crossbeam-channel = "0.5"
log4rs = "1"
rpassword = "7.2.0"
ureq = {version ="2.6", optional = true}
[features]
default = ["keyring-secrets", "notifier-ntfy"]
keyring-secrets = ["keyring"]
notifier-ntfy = ["ureq"]