-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 918 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
[package]
name = "onedrive_slideshow"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
bytes = "1.9"
cfg-if = "1.0"
eframe = "0.30"
egui = "0.30"
egui_extras = { version = "0.30", features = ["image"] }
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
rand = "0.8"
reqwest = { version = "0.12", features = ["gzip", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sys-info = "0.9"
tokio = { version = "1.43", features = ["fs", "rt", "net", "time", "rt-multi-thread", "macros"] }
# Build openssl from source instead of linking it.
# Required for cross-compilation.
native-tls = { version = "0.2", features = ["vendored"] }
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = {version = "0.59", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security_Credentials"] }
[dev-dependencies]
mockito = "1.6"