-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
24 lines (22 loc) · 862 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
[package]
name = "clinbox"
authors = ["Justin Garofolo <justin@garofolo.net>"]
version = "0.1.0"
license = "MIT"
categories = ["command-line-utilities"]
description = "Command line utility to generate and access disposable email addresses."
homepage = "https://github.com/ooojustin/clinbox"
repository = "https://github.com/ooojustin/clinbox"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
chrono = "0.4.31"
clap = { version = "4.4.6", features = ["derive"] }
clipboard = "0.5.0"
reqwest = { version = "0.11.22", features = ["cookies"] }
reqwest_cookie_store = "0.6.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
tokio = { version = "1.32.0", features = ["full"] }
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }