-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (33 loc) · 960 Bytes
/
Cargo.toml
File metadata and controls
43 lines (33 loc) · 960 Bytes
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
[package]
name = "verbrauchsmanager"
version = "0.1.2"
edition = "2021"
description = "Strom-, Wasser- und Gasverbrauchsmanager"
authors = ["Verbrauchsmanager"]
[[bin]]
name = "verbrauchsmanager"
path = "src/main.rs"
[dependencies]
# GUI – reines Rust, keine C++ Bindings nötig
eframe = { version = "0.27", features = ["default"] }
egui = "0.27"
egui_extras = { version = "0.27", features = ["image"] }
# Datenbank – SQLite statisch gelinkt
rusqlite = { version = "0.31", features = ["bundled"] }
# CSV-Export
csv = "1.3"
# XLSX-Export
rust_xlsxwriter = "0.68"
# Datum / Zeit
chrono = { version = "0.4", features = ["serde"] }
# Betriebssystem-Pfade
dirs = "5.0"
# Datei-Dialoge (Öffnen/Speichern)
rfd = "0.14"
# Fehlerbehandlung
anyhow = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true