#async-task #local-storage #async

task-local

Task-local storage for asynchronous tasks

1 unstable release

0.1.0 Mar 25, 2025

#2593 in Asynchronous

Download history 2122/week @ 2025-10-24 2380/week @ 2025-10-31 2850/week @ 2025-11-07 2936/week @ 2025-11-14 3698/week @ 2025-11-21 3798/week @ 2025-11-28 3410/week @ 2025-12-05 5092/week @ 2025-12-12 3396/week @ 2025-12-19 2012/week @ 2025-12-26 2273/week @ 2026-01-02 2683/week @ 2026-01-09 2670/week @ 2026-01-16 2873/week @ 2026-01-23 2102/week @ 2026-01-30 2661/week @ 2026-02-06

10,779 downloads per month
Used in 6 crates (2 directly)

MIT/Apache

18KB
240 lines

task-local

Crates.io Documentation CI Status License: MIT OR Apache-2.0

Task-local storage for asynchronous tasks, extracted from the tokio::task_local module.

This crate provides a way to store task-local values across .await points without requiring the Tokio runtime.

Overview

Task-local storage allows you to store and access data that is local to the current asynchronous task. Unlike thread-local storage, task-local values are preserved across .await points within the same task.

Usage

Add this to your Cargo.toml:

[dependencies]
task-local = "0.1.0"

Example

use task_local::task_local;

task_local! {
    static NUMBER: u32;
}

async fn example() {
    NUMBER.scope(1, async {
        // The value 1 is accessible within this async block
        assert_eq!(NUMBER.get(), 1);

        // It's also accessible across .await points
        some_async_function().await;
        assert_eq!(NUMBER.get(), 1);

        // You can nest scopes
        NUMBER.scope(2, async {
            assert_eq!(NUMBER.get(), 2);
        }).await;

        // After the nested scope, the original value is restored
        assert_eq!(NUMBER.get(), 1);
    }).await;
}

async fn some_async_function() {
    // The task-local value is still accessible here
    assert_eq!(NUMBER.get(), 1);
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~43KB