blob: 19acb31e696b99bdc4ddcf7328ec85045d6b0ec2 (
plain) (
blame)
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "elem"
version = "0.1.3"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Logitech Battery Level Tray Indicator"
readme = "README.md"
homepage = "https://github.com/Fuwn/elem"
repository = "https://github.com/Fuwn/elem"
license = "GPL-3.0-only"
keywords = ["logitech", "g-hub", "battery"]
# Slower builds, faster executables
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
[dependencies]
url = "2.3.1" # URL Implementation
# Serialization
serde = "1.0.157"
serde_derive = "1.0.157"
serde_json = "1.0.94"
# 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"] }
|