Skip to content
View nanoqsh's full-sized avatar

Block or report nanoqsh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. dunge dunge Public

    Typesafe and portable 3d render library

    Rust 41 1

  2. areq areq Public

    Async runtime agnostic HTTP requests

    Rust 21

  3. ni ni Public

    Small alloc-free named identifier

    Rust 4

  4. tauri-wasm tauri-wasm Public

    The tauri framework library for pure rust frontend

    Rust 11 1

  5. json_lang json_lang Public

    Full-fledged programming in JSON, why not?

    Rust 4

  6. Block on a thread pool Block on a thread pool
    1
    fn block_on_thread_pool<'ex, F, U>(n_threads: usize, f: F) -> U
    2
    where
    3
        F: AsyncFnOnce(Arc<Executor<'ex>>) -> U,
    4
    {
    5
        let ex = Arc::new(Executor::new());