forked from uriegel/systemicons
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (30 loc) · 1018 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
30
31
32
33
34
[package]
name = "systemicons"
version = "0.7.0"
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 <uriegel@hotmail.de>",
"Victor Aremu <victor.olorunbumi@gmail.com>",
"Jeremy Soller <jeremy@system76.com>",
]
edition = "2021"
license = "MIT"
repository = "https://github.com/uriegel/systemicons"
readme = "README.md"
[target.'cfg(not(any(target_os="windows",target_os="macos")))'.dependencies]
freedesktop-icons = "0.2"
lazy_static = "1.4"
xdg-mime = "0.3"
[target.'cfg(target_os="windows")'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }
winit = "0.25"
image = "0.23"
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.24.0"
objc = "0.2.7"
[dev-dependencies]
tokio = { version = "1.8", features = ["full"] }
warp = "0.3"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"