-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
54 lines (49 loc) · 2.26 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
50
51
52
53
54
[package]
name = "serial-monitor-rust"
version = "0.3.5"
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.31", features = ["persistence", "wayland", "x11"] }
egui_plot = "0.31"
egui_extras = { version = "0.31", features = ["all_loaders"] }
egui-phosphor = { version = "0.9" }
egui-theme-switch = { git = "https://github.com/hacknus/egui-theme-switch" }
egui_logger = { git = "https://github.com/hacknus/egui_logger" }
egui-file-dialog = { 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.7", features = ["serde"] }
log = "0.4"
self_update = { git = "https://github.com/hacknus/self_update", features = ["archive-zip", "compression-zip-deflate"], optional = true }
tempfile = { version = "3.15", optional = true }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "http2"], optional = true }
semver = { version = "1.0.24", optional = true }
[features]
self_update = ["dep:self_update", "tempfile", "reqwest", "semver"]
[build-dependencies]
regex = "1.11"
[package.metadata.bundle]
name = "Serial Monitor"
identifier = "ch.hacknus.serial_monitor"
icon = ["./icons/install.png"]
copyright = "Copyright (c) hacknus 2025. All rights reserved."
category = "Developer Tool"
short_description = "Serial Monitor and Plotter written in rust."
long_description = "Serial Monitor and Plotter written in rust. Interface with serial devices with the ability to log to a file and plot the data."
osx_minimum_system_version = "10.12"
osx_url_schemes = ["ch.hacknus.serial_monitor"]
deb_depends = ["libclang-dev", "libgtk-3-dev", "libxcb-render0-dev", "libxcb-shape0-dev", "libxcb-xfixes0-dev", "libxkbcommon-dev", "libssl-dev"]
[package.metadata.wix]
dbg-build = false
dbg-name = false
name = "Serial Monitor"
no-build = false
output = "target/wix/SerialMonitorInstaller.msi"