You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaname="description"content="Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more."></meta>
29
+
<meta
30
+
name="description"
31
+
content="Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more."
Copy file name to clipboardExpand all lines: components/libs.tsx
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,12 @@ const LIBS: Library[] = [
11
11
{
12
12
id: "runtime",
13
13
name: "Reliable",
14
-
desc:
15
-
"Tokio's APIs are memory-safe, thread-safe, and misuse-resistant. This helps prevent common bugs, such as unbounded queues, buffer overflows, and task starvation.",
14
+
desc: "Tokio's APIs are memory-safe, thread-safe, and misuse-resistant. This helps prevent common bugs, such as unbounded queues, buffer overflows, and task starvation.",
16
15
},
17
16
{
18
17
id: "hyper",
19
18
name: "Fast",
20
-
desc:
21
-
"Building on top of Rust, Tokio provides a multi-threaded, work-stealing scheduler. Applications can process hundreds of thousands of requests per second with minimal overhead.",
19
+
desc: "Building on top of Rust, Tokio provides a multi-threaded, work-stealing scheduler. Applications can process hundreds of thousands of requests per second with minimal overhead.",
22
20
},
23
21
{
24
22
id: "tonic",
@@ -34,8 +32,7 @@ const LIBS: Library[] = [
34
32
{
35
33
id: "tower",
36
34
name: "Flexible",
37
-
desc:
38
-
"The needs of a server application differ from that of an embedded device. Although Tokio comes with defaults that work well out of the box, it also provides the knobs needed to fine tune to different cases.",
35
+
desc: "The needs of a server application differ from that of an embedded device. Although Tokio comes with defaults that work well out of the box, it also provides the knobs needed to fine tune to different cases.",
0 commit comments