-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (39 loc) · 1.08 KB
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
[package]
name = "ka3005p"
version = "0.7.0"
authors = [
"Nicola Coretti <nico.coretti@gmail.com>",
"Daniel Hartig <daniel-hartig@gmx.de>",
"Jack Newman <Jack.Newman12@gmail.com>"
]
edition = "2021"
autobins = false
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "cli tool to remote control a ka3005p power supply"
homepage = "https://github.com/Nicoretti/ka3005p"
repository = "https://github.com/Nicoretti/ka3005p"
keywords = ["power-supply", "remote-control", "serial", "ka3000", "ka3005p"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.28"
env_logger = "0.11.8"
pyo3 = { version = "0.27.1", optional = true }
serialport = "4.8.1"
clap = { version = "4.5.51", features = ["derive"] }
anyhow = "1.0.100"
human-panic = "2.0.4"
[features]
python_module = ["pyo3"]
[lib]
name = "ka3005p"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "ka3005p"
path = "src/bin/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"