rustmod-tools 0.1.0

CLI tools for interacting with Modbus devices via rust-mod.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "rustmod-tools"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tools for interacting with Modbus devices via rust-mod."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rbhans/rust-mod"

[lib]
name = "rustmod_tools"
path = "src/lib.rs"

[[bin]]
name = "readcoils"
path = "src/bin/readcoils.rs"

[[bin]]
name = "readholding"
path = "src/bin/readholding.rs"

[[bin]]
name = "readinput"
path = "src/bin/readinput.rs"

[[bin]]
name = "scandevices"
path = "src/bin/scandevices.rs"

[[bin]]
name = "writecoil"
path = "src/bin/writecoil.rs"

[[bin]]
name = "writeholding"
path = "src/bin/writeholding.rs"

[[example]]
name = "common_helpers"
path = "examples/common_helpers.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.rustmod-client]
version = "0.1.0"

[dependencies.rustmod-datalink]
version = "0.1.0"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "net",
    "io-util",
    "sync",
    "time",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "fmt",
    "env-filter",
]