From db44b84bb613b1b707fafaed9ae4647ac00663a0 Mon Sep 17 00:00:00 2001 From: Uwe Klotz Date: Wed, 3 Jan 2024 19:56:54 +0100 Subject: [PATCH 1/2] Fix badge links in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4063b97..bc24cde3 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A pure [Rust](https://www.rust-lang.org) [![Crates.io](https://img.shields.io/crates/v/tokio-modbus.svg)](https://crates.io/crates/tokio-modbus) [![Docs.rs](https://docs.rs/tokio-modbus/badge.svg)](https://docs.rs/tokio-modbus/) [![Security audit](https://github.com/slowtec/tokio-modbus/actions/workflows/security-audit.yaml/badge.svg)](https://github.com/slowtec/tokio-modbus/actions/workflows/security-audit.yaml) -[![Continuous integration](https://github.com/slowtec/tokio-modbus/actions/workflows/continuous-integration.yaml/badge.svg)](https://github.com/slowtec/tokio-modbus/actions/workflows/continuous-integration.yaml) +[![Continuous integration](https://github.com/slowtec/tokio-modbus/actions/workflows/build-and-test.yaml/badge.svg)](https://github.com/slowtec/tokio-modbus/actions/workflows/build-and-test.yaml) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE-MIT) [![Apache 2.0 licensed](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](./LICENSE-APACHE) From bfaadb5fd6c362cbe35a94e6daefc658e7b221f5 Mon Sep 17 00:00:00 2001 From: Uwe Klotz Date: Wed, 3 Jan 2024 19:59:14 +0100 Subject: [PATCH 2/2] Add missing rtu-over-tcp-server feature in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bc24cde3..215daef9 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ tokio-modbus = "*" - `"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