rmodbus 0.12.2

Fast and platform-independent Modbus server framework
Documentation
[dependencies.bincode]
optional = true
version = "2.0.0-rc.2"

[dependencies.defmt]
optional = true
version = "0.3.0"

[dependencies.fixedvec]
optional = true
version = "0.2.4"

[dependencies.heapless]
optional = true
version = "0.9.1"

[dependencies.ieee754]
version = "0.2.6"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_arrays]
optional = true
version = "0.1.0"

[dev-dependencies.bincode]
version = "2.0.0-rc.2"

[dev-dependencies.crc16]
version = "0.4.0"

[dev-dependencies.fixedvec]
version = "0.2.4"

[dev-dependencies.once_cell]
version = "1.19.0"

[dev-dependencies.rand]
version = "0.7.3"

[dev-dependencies.serial]
version = "0.4.0"

[dev-dependencies.spin]
version = "0.5.2"

[[example]]
name = "app"
path = "examples/app.rs"
required-features = ["std", "with_bincode"]

[[example]]
name = "tcpserver"
path = "examples/tcpserver.rs"
required-features = ["std"]

[[example]]
name = "udpserver"
path = "examples/udpserver.rs"
required-features = ["std"]

[[example]]
name = "rtuserver"
path = "examples/rtuserver.rs"
required-features = ["std"]

[[example]]
name = "asciiserver"
path = "examples/asciiserver.rs"
required-features = ["std"]

[[example]]
name = "tcpclient"
path = "examples/tcpclient.rs"
required-features = ["std"]

[features]
alloc = []
default = ["std"]
defmt = ["dep:defmt"]
std = []
with_bincode = ["bincode"]
with_serde = ["serde", "serde_arrays"]

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

[lints.clippy]
doc_markdown = "allow"
large_futures = "allow"
manual_div_ceil = "allow"
manual_slice_fill = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
non_std_lazy_statics = "allow"
precedence = "allow"
return_self_not_must_use = "allow"
single_match = "allow"
uninlined_format_args = "allow"
used-underscore-binding = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[package]
authors = ["Serhij S. <div@altertech.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Fast and platform-independent Modbus server framework"
edition = "2021"
keywords = ["modbus", "server", "hardware", "nostd"]
license = "Apache-2.0"
name = "rmodbus"
readme = "README.md"
repository = "https://github.com/alttch/rmodbus"
version = "0.12.2"

[package.metadata.docs.rs]
features = []

[package.metadata.playground]
features = []