-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
39 lines (35 loc) · 1.1 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
[package]
name = "systemicons"
version = "0.9.13"
description = "With this lib you can retrive the system icon which is associated to a certain file extension. The icon will be in the .png format. Windows, macOS and Linux (GTK) are supported."
authors = [
"Uwe Riegel <[email protected]>",
"Victor Aremu <[email protected]>",
]
edition = "2021"
license = "MIT"
repository = "https://github.com/uriegel/systemicons"
readme = "README.md"
[target.'cfg(target_os="linux")'.dependencies]
gio-sys = "0.18"
glib = "0.18"
glib-sys = "0.18"
gtk-sys = "0.18"
gtk = "0.18"
[target.'cfg(target_os="windows")'.dependencies]
windows = { version = "0.58.0", features = [
"Win32_UI_Shell",
"Win32_Graphics_Gdi",
"Win32_UI_WindowsAndMessaging",
"Win32_Storage_FileSystem",
] }
image = { version = "0.25.5", default-features = false, features = [ "ico" ]}
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.26.0"
objc = "0.2.7"
[dev-dependencies]
tokio = { version = "1.8", features = ["full"] }
warp = "0.3"
chrono = "0.4"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0"