22 releases (12 stable)

5.4.4 Nov 2, 2022
5.4.3 Mar 23, 2022
5.4.1 Aug 8, 2021
5.4.0-beta4 Jul 23, 2021
0.1.0 Feb 2, 2017

#15 in Asynchronous

Download history 10931/week @ 2023-12-11 9490/week @ 2023-12-18 3468/week @ 2023-12-25 8250/week @ 2024-01-01 11472/week @ 2024-01-08 10086/week @ 2024-01-15 11025/week @ 2024-01-22 11016/week @ 2024-01-29 10298/week @ 2024-02-05 9644/week @ 2024-02-12 9718/week @ 2024-02-19 9590/week @ 2024-02-26 9843/week @ 2024-03-04 10115/week @ 2024-03-11 9464/week @ 2024-03-18 9714/week @ 2024-03-25

39,512 downloads per month
Used in 66 crates (59 directly)

MIT license

29KB
478 lines

Crates.io MIT licensed Build Status

tokio-serial

An implementation of serialport I/O for Tokio, an async framework for rust.

MSRV

The Minimum Supported Rust Version is 1.46.0 as found using cargo-msrv

Usage

Add tokio-serial to you Cargo.toml:

[dependencies]
tokio-serial = "5.4.1"

Tests

Useful tests for serial ports require... serial ports, and serial ports are not often provided by online CI providers. As so, automated build testing are really only check whether the code compiles, not whether it works.

Integration tests are in the tests/ directory and typically require two serial ports to run. The names of the serial ports can be configured at run time by setting the TEST_PORT_NAMES environment variable to a semi-colon delimited string with the two serial port names. The default values are:

  • For Unix: TEST_PORT_NAMES=/dev/ttyUSB0;/dev/ttyUSB1
  • For Windows: TEST_PORT_NAMES=COM1;COM2

IMPORTANT To prevent multiple tests from talking to the same ports at the same time make sure to limit the number of test threads to 1 using:

cargo test -j1 -- --test-threads=1

Resources

tokio.rs serialport-rs

Dependencies

~5–17MB
~178K SLoC