this post was submitted on 22 Sep 2023
44 points (97.8% liked)

Rust

5888 readers
94 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] d_k_bo@feddit.de 13 points 1 year ago (1 children)

I think the best part about smol is its composability.

Unlike tokio which consists of one large integrated library, smol provides many smaller, mostly runtime-agnostic crates e. g. blocking to run blocking I/O on a thread pool or async-lock for async lock primitives.

[โ€“] anlumo@feddit.de 2 points 1 year ago

Tokio handles that through feature flags.