-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 1.04 KB
/
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 = "rust-paper"
version = "0.1.2"
edition = "2021"
categories = ["command-line-utilities", "parsing", "parser-implementations", "asynchronous", "no-std"]
description = "Rust Wallpaper manager from ( https://wallhaven.cc/ ) for Linux/UNIX only"
documentation = "https://github.com/falcon71181/rust-paper/blob/main/README.md"
readme = "README.md"
authors = ["falcon71181"]
keywords = ["cli", "Wallpaper", "wallhaven", "Wallpaper-manager", "wall-paper"]
repository = "https://github.com/falcon71181/rust-paper"
license = "MIT"
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.20", features = ["derive"] }
confy = "0.6.1"
dirs = "5.0.1"
futures = "0.3.31"
image = "0.25.1"
lazy_static = "1.5.0"
lock = "0.1.0"
reqwest = {version = "0.12.4", features = ["blocking"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
sha2 = "0.10.8"
tokio = { version = "1.40.0", features = ["full"] }
url = "2.5.2"