aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-12-29 08:42:17 +0000
committerFuwn <[email protected]>2022-12-29 08:42:17 +0000
commit4742461cc8dcaca3f45a2da914fc66dad3fc2c5f (patch)
tree34fa6d1d75253226b884fa278a969f01cccdd7f8 /Cargo.toml
downloadelem-4742461cc8dcaca3f45a2da914fc66dad3fc2c5f.tar.xz
elem-4742461cc8dcaca3f45a2da914fc66dad3fc2c5f.zip
feat: initial releasev0.1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..4b32faa
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,31 @@
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[package]
+name = "elem"
+version = "0.1.0"
+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"
+serde_json = "1.0.91"
+serde = "1.0.151"
+serde_derive = "1.0.151"
+lodepng = "3.7.2"
+image = "0.24.5"
+tao = { version = "0.15.8", features = ["tray"] }
+tungstenite = "0.18.0"
+pretty_env_logger = "0.4.0"
+log = "0.4.17"