-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 994 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
36
37
38
[package]
name = "maskedemail"
version = "0.1.0"
edition = "2021"
build = "build.rs"
authors = ["Yu-Fu Fu <[email protected]>"]
description = "CLI for FastMail MaskedEmail"
[lib]
# [[bin]]
# name = "maskedemail"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
async-once-cell = "0.4.2"
chrono = { version = "0.4.23", features = ["serde"] }
clap = { version = "4.0.26", features = ["derive", "cargo"] }
clap-verbosity-flag = "2.0.0"
confy = "0.5.1"
derivative = "2.2.0"
futures = "0.3.25"
itertools = "0.10.5"
log = "0.4.17"
once_cell = "1.16.0"
reqwest = { version = "0.11.13", features = ["blocking", "json"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.88"
serde_tuple = "0.5.0"
shadow-rs = "0.17.1"
tokio = { version = "1.22.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[build-dependencies]
shadow-rs = "0.17.1"