32 lines
650 B
TOML
32 lines
650 B
TOML
cargo-features=["strip"]
|
|
[package]
|
|
name = "serial_communication_tool_v2"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
gtk = "0.14.1"
|
|
gio = "0.14.6"
|
|
glib = "0.14.5"
|
|
#pretty-hex = "0.2.1"
|
|
#gtk4 = {git = "https://github.com/gtk-rs/gtk4-rs/"}
|
|
#gtk4 = "0.3.0"
|
|
#gio4_sys ="0."
|
|
#gtk4_sys = "0.3.0"
|
|
#gtk4-sys = "0.3.0"
|
|
serialport = "4.0.1"
|
|
closure = "0.3.0"
|
|
[profile.release]
|
|
opt-level = 'z'
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
strip = "debuginfo"
|
|
#[[bin]]
|
|
#name = "win_serial_comm_tool"
|
|
#target = "x86_64-pc-windows-gnu"
|
|
#path = "src/main.rs"
|
|
|