- tokio 1. 48. 0 - Docs. rs
Tokio is an event-driven, non-blocking I O platform for writing asynchronous applications with the Rust programming language At a high level, it provides a few major components:
- tokio 1. 48. 0 - Docs. rs
tokio 1 48 0 An event-driven, non-blocking I O platform for writing asynchronous I O backed applications
- tokio_console - Rust - Docs. rs
Tokio v1 0 or greater is required to use the console, and some features are only available in later versions See the console-subscriber documentation for details
- console_subscriber - Rust - Docs. rs
A minimum version of Tokio v1 0 0 or later is required to use the console’s task instrumentation Other instrumentation is added in later Tokio releases: Tokio v1 7 0 or later is required to record task waker instrumentation (such as waker counts, clones, drops, et cetera)
- tokio 1. 48. 0 - Docs. rs
- tokio-stream Cargo toml --> Tokio will keep a rolling MSRV (minimum supported rust version) policy of **at least** 6 months When increasing the MSRV, the new Rust version must have been released at least six months ago The current MSRV is 1 71 Note that the MSRV is not increased automatically, and only as part of a minor release
- tokio_stream - Rust - Docs. rs
The opposite conversion from an AsyncRead into a Stream is also another commonly required feature To enable these conversions, tokio-util provides the StreamReader and ReaderStream types when the io feature is enabled
- tokio::io - Rust - Docs. rs
This module is the asynchronous version of std::io Primarily, it defines two traits, AsyncRead and AsyncWrite, which are asynchronous versions of the Read and Write traits in the standard library
- reqwest 0. 12. 26 - Docs. rs
This asynchronous example uses Tokio and enables some optional features, so your Cargo toml could look like this: [dependencies] reqwest = { version = "0 12", features = ["json"] } tokio = { version = "1", features = ["full"] }
|