-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (34 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
32
33
34
35
36
37
[package]
name = "syno-photos-util"
version = "0.2.2"
edition = "2021"
description = "Helper for a number of tasks unavailable in Synology Photos web interface"
license = "GPL-3.0-or-later"
authors = ["Piotr Karasinski"]
readme = "README.md"
repository = "https://github.com/caleb9/syno-photos-util"
keywords = [
"synology",
"synology-photos",
"synology-nas",
"cli-app",
]
rust-version = "1.75.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.*"
clap = { version = "4.*", features = ["derive", "wrap_help"] }
derive_more = { version = "2.0", default-features = false, features = ["display"] }
dirs = "6.*"
futures = "0.3"
log = "0.4"
reqwest = { version = "0.12", features = ["cookies", "json", "native-tls-vendored"] }
serde = { version = "1.*", features = ["derive"] }
serde_json = "1.*"
serde_with = "3.*"
simple_logger = "5.0"
syno_api = { version = "0.3" }
tokio = { version = "1", features = ["full"] }
yapp = { version = "0.4" }
[dev-dependencies]
mockall = "0.13"