mbus-client-async 0.14.0

Role-focused async Modbus client facade re-exported from mbus-async
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 = "2024"
name = "mbus-client-async"
version = "0.14.0"
authors = ["Raghava Ch <ch.raghava44@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Role-focused async Modbus client facade re-exported from mbus-async"
homepage = "https://github.com/Raghava-Ch"
readme = "README.md"
keywords = [
    "modbus",
    "embedded",
    "no-std",
    "device",
]
categories = [
    "embedded",
    "no-std",
]
license-file = "LICENSE"
repository = "https://github.com/Raghava-Ch/modbus-rs"
resolver = "2"

[features]
coils = ["mbus-async/coils"]
default = [
    "network-tcp",
    "coils",
    "registers",
    "discrete-inputs",
    "fifo",
    "file-record",
    "diagnostics",
]
diagnostics = ["mbus-async/diagnostics"]
discrete-inputs = ["mbus-async/discrete-inputs"]
fifo = ["mbus-async/fifo"]
file-record = ["mbus-async/file-record"]
full = [
    "default",
    "traffic",
]
holding-registers = ["mbus-async/holding-registers"]
input-registers = ["mbus-async/input-registers"]
logging = ["mbus-async/logging"]
network-tcp = ["mbus-async/network-tcp"]
registers = [
    "holding-registers",
    "input-registers",
]
serial-ascii = ["mbus-async/serial-ascii"]
serial-rtu = ["mbus-async/serial-rtu"]
traffic = ["mbus-async/traffic"]

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

[[example]]
name = "quick_async_client"
path = "examples/quick_async_client.rs"
required-features = [
    "network-tcp",
    "coils",
]

[dependencies.mbus-async]
version = "0.14.0"
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]