29 releases (11 breaking)

0.12.0 Mar 21, 2024
0.10.0 Jan 3, 2024
0.9.0 Jul 27, 2023
0.7.1 Feb 28, 2023
0.0.0 Aug 21, 2017

#36 in Network programming

Download history 721/week @ 2023-12-23 871/week @ 2023-12-30 1830/week @ 2024-01-06 2168/week @ 2024-01-13 1843/week @ 2024-01-20 1920/week @ 2024-01-27 1950/week @ 2024-02-03 2476/week @ 2024-02-10 2593/week @ 2024-02-17 2939/week @ 2024-02-24 2027/week @ 2024-03-02 2314/week @ 2024-03-09 2925/week @ 2024-03-16 2853/week @ 2024-03-23 4417/week @ 2024-03-30 5486/week @ 2024-04-06

16,126 downloads per month
Used in 24 crates (21 directly)

MIT/Apache

170KB
4K SLoC

tokio-modbus

A pure Rust Modbus library based on tokio.

Crates.io Docs.rs Security audit Continuous integration MIT licensed Apache 2.0 licensed

Modbus is based on a master/slave communication pattern. To avoid confusion with the Tokio terminology the master is called client and the slave is called server in this library.

Features

  • Pure Rust library
  • Modbus TCP or RTU at your choice
  • Both async (non-blocking, default) and sync (blocking, optional)
  • Client API
  • Server implementations
    • for out-of-the-box usage or
    • as a starting point for a customized implementation
  • Open source (MIT/Apache-2.0)

Installation

Add this to your Cargo.toml:

[dependencies]
tokio-modbus = "*"

Cargo Features

  • "rtu": Asynchronous RTU client (default)
  • "tcp": Asynchronous TCP client (default)
  • "rtu-sync: Synchronous RTU client
  • "tcp-sync": Synchronous TCP client
  • "rtu-server": (Asynchronous) RTU server
  • "tcp-server": (Asynchronous) TCP server
  • "rtu-over-tcp-server": (Asynchronous) RTU over TCP server

Examples

If you only need an asynchronous TCP client add the following line to your Cargo.toml file:

[dependencies]
tokio-modbus = { version = "*", default-features = false, features = ["tcp"] }

For an asynchronous RTU client:

[dependencies]
tokio-modbus = { version = "*", default-features = false, features = ["rtu"] }

For an RTU server:

[dependencies]
tokio-modbus = { version = "*", default-features = false, features = ["rtu-server"] }

For a TCP server:

[dependencies]
tokio-modbus = { version = "*", default-features = false, features = ["tcp-server"] }

Examples

Various examples for Modbus RTU and TCP using either the asynchronous or synchronous API can be found in the examples folder.

Testing

The workspace contains documentation, tests, and examples for all available features.

cargo test --workspace
cargo test --workspace --all-features

Protocol-Specification

License

Copyright (c) 2017-2024 slowtec GmbH

MIT/Apache-2.0

Dependencies

~3–15MB
~147K SLoC