-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (18 loc) · 585 Bytes
/
Cargo.toml
File metadata and controls
21 lines (18 loc) · 585 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "ruiden"
version = "0.4.0"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
edition = "2021"
description = "Ruiden RD power supply modbus wrapper"
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt"] }
tokio-modbus = { version = "0.9", default-features = false, features = ["rtu"] }
tokio-serial = "5"
[lints.clippy]
pedantic = "warn"
nursery = "warn"