-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
49 lines (45 loc) · 1.59 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "serial-monitor-rust"
version = "0.3.3"
edition = "2021"
authors = ["Linus Leo Stöckli"]
description = "Serial Monitor and Plotter written in rust."
license = "GPL-3.0"
homepage = "https://github.com/hacknus/serial-monitor-rust"
[dependencies]
csv = "1.3"
eframe = { version = "0.30.0", features = ["persistence", "wayland", "x11"] }
egui_plot = "0.30.0"
egui_extras = { version = "0.30.0", features = ["all_loaders"] }
egui-phosphor = { version = "0.8.0" }
egui-theme-switch = { version = "0.2.3", default-features = true }
egui_logger = "0.6.2"
egui-file-dialog = { version = "0.8.0", git = "https://github.com/hacknus/egui-file-dialog", branch = "sort_by_metadata", features = ["information_view"] }
image = { version = "0.25", default-features = false, features = ["png"] }
keepawake = { version = "0.5.1" }
preferences = { version = "2.0.0" }
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serialport = { version = "4.6.1", features = ["serde"] }
log = "0.4.22"
[build-dependencies]
regex = "1.11"
[package.metadata.bundle]
name = "Serial Monitor"
identifier = "com.hacknus.serial_monitor"
icon = ["./icons/install.png"]
version = "0.3.3"
copyright = "Copyright (c) hacknus 2025. All rights reserved."
category = "Developer Tool"
short_description = "Serial Monitor and Plotter written in rust."
license = "GPL-3.0"
osx_minimum_system_version = "10.8"
osx_url_schemes = ["com.hacknus.serial_monitor"]
[package.metadata.wix]
dbg-build = false
dbg-name = false
name = "Serial Monitor"
no-build = false
output = "target/wix/SerialMonitorInstaller.msi"
version = "0.3.3"
license = "GPL-3.0"