Skip to content
View nanoqsh's full-sized avatar
  • Kazakhstan

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. dunge Public

    Simple and portable 3d render library

    Rust 35 1

  2. areq Public

    Async runtime independent HTTP requests

    Rust 19

  3. json_lang Public

    Full-fledged programming in JSON, why not?

    Rust 3

  4. tauri-wasm Public

    The tauri framework library for pure rust frontend

    Rust 7

  5. voki Public

    Chat app written in Rust

    Rust

  6. 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());