-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
45 lines (42 loc) · 1.08 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
38
39
40
41
42
43
44
45
[package]
name = "syno-photo-frame"
version = "0.14.3"
edition = "2024"
description = "Full-screen slideshow for Synology Photos and Immich albums"
license = "GPL-3.0-or-later"
authors = ["Piotr Karasinski"]
readme = "README.md"
repository = "https://github.com/caleb9/syno-photo-frame"
keywords = [
"synology",
"synology-photos",
"immich",
"digital-photo-frame",
"raspberry-pi",
]
rust-version = "1.85"
exclude = [
".*",
"doc/",
"Dockerfile",
"dpkg/",
"assets/*.xcf"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.*"
bytes = "1.*"
clap = { version = "4.*", features = ["derive", "wrap_help"] }
image = { version = "0.25.*", default-features = false, features = ["jpeg", "png"] }
log = "0.4.*"
rand = "0.9.*"
regex = "1.*"
reqwest = { version = "0.12.*", features = ["blocking", "cookies", "json"] }
sdl2 = "0.37.*"
serde = { version = "1.*", features = ["derive"] }
serde_json = "1.*"
simple_logger = "5.*"
syno_api = "0.3"
[dev-dependencies]
mock_instant = "0.3.*"
mockall = "0.13.*"