mbus-client 0.2.0

Modbus client stack for embedded and std environments with TCP, RTU, and ASCII transport support
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"
version = "0.2.0"
authors = ["Raghava Ch <ch.raghava44@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Modbus client stack for embedded and std environments with TCP, RTU, and ASCII transport support"
homepage = "https://github.com/Raghava-Ch"
readme = "README.md"
keywords = [
    "modbus",
    "embedded",
    "no-std",
    "device",
]
categories = [
    "embedded",
    "no-std",
]
license = "GPL-3.0-only"
repository = "https://github.com/Raghava-Ch/modbus-rs"
resolver = "2"

[features]
coils = ["mbus-core/coils"]
default = [
    "coils",
    "registers",
    "discrete-inputs",
    "fifo",
    "file-record",
    "diagnostics",
]
diagnostics = ["mbus-core/diagnostics"]
discrete-inputs = ["mbus-core/discrete-inputs"]
fifo = ["mbus-core/fifo"]
file-record = ["mbus-core/file-record"]
logging = ["dep:log"]
registers = ["mbus-core/registers"]
serial-ascii = ["mbus-core/serial-ascii"]

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

[dependencies.heapless]
version = "0.8.0"

[dependencies.log]
version = "0.4.29"
optional = true
default-features = false

[dependencies.mbus-core]
version = "0.2.0"