aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-12-29 09:55:35 +0000
committerFuwn <[email protected]>2022-12-29 09:55:35 +0000
commit9b4b68452e69f9ca59af4d251b0bb147330d4a0c (patch)
treeb3050a6f6b7e4ea63986ea43d87313a00267f1ee /Cargo.toml
parentdocs(README.md): add example usage gif (diff)
downloadelem-0.1.2.tar.xz
elem-0.1.2.zip
feat: hide/show log windowv0.1.2
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 16 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 370d17a..4009ac3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "elem"
-version = "0.1.1"
+version = "0.1.2"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Logitech Battery Level Tray Indicator"
@@ -19,13 +19,26 @@ codegen-units = 1
opt-level = 3
[dependencies]
-url = "2.3.1"
-serde_json = "1.0.91"
+url = "2.3.1" # URL Implementation
+
+# Serialization
serde = "1.0.151"
serde_derive = "1.0.151"
+serde_json = "1.0.91"
+
+# Image Generation and Manipulation
lodepng = "3.7.2"
image = "0.24.5"
+
+# Event Loop and System Tray
tao = { version = "0.15.8", features = ["tray"] }
+
+# WebSocket Client
tungstenite = "0.18.0"
+
+# Logging
pretty_env_logger = "0.4.0"
log = "0.4.17"
+
+# Windows API
+winapi = { version = "0.3.9", features = ["winuser"] }