awesome-repositories.com
Blog
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectAboutHow we rankPressMCP server
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to nextest-rs/future-queue

Open-source alternatives to Future Queue

30 open-source projects similar to nextest-rs/future-queue, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Future Queue alternative.

  • tqwewe/kameotqwewe avatar

    tqwewe/kameo

    1,333View on GitHub↗

    Fault-tolerant async actors for Rust that scale seamlessly

    Rust
    View on GitHub↗1,333
  • dagrs-dev/dagrsdagrs-dev avatar

    dagrs-dev/dagrs

    478View on GitHub↗

    High-performance, Rust-based asynchronous task programming framework implementing Flow-Based Programming for scalable directed acyclic graph (DAG) task orchestration

    Rustasyncconcurrentdag
    View on GitHub↗478
  • t3hmrman/async-droppert3hmrman avatar

    t3hmrman/async-dropper

    52View on GitHub↗

    🗑 async-dropper is probably the least-worst ad-hoc AysncDrop implementation you've seen so far.

    Rust
    View on GitHub↗52
  • xudong-huang/mayXudong-Huang avatar

    Xudong-Huang/may

    2,394View on GitHub↗

    rust stackful coroutine library

    Rust
    View on GitHub↗2,394
  • iii-hq/iiiiii-hq avatar

    iii-hq/iii

    18,238View on GitHub↗

    iii is a distributed service orchestrator and event-driven workflow engine designed to compose and manage cross-language functions and workers through a central execution engine. It functions as a multi-language service mesh and WebSocket service gateway, providing a persistent communication layer for remote service workers. The platform enables dynamic runtime extensions, allowing new workers and capabilities to be deployed and registered into a live environment without requiring system restarts. It distinguishes itself by offering machine-readable skill exposure and agent capability integra

    Rust
    View on GitHub↗18,238

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • async-rs/async-stdasync-rs avatar

    async-rs/async-std

    4,068View on GitHub↗

    async-std is a Rust asynchronous runtime and non-blocking I/O library. It serves as an asynchronous standard library, providing a set of alternatives to the core Rust library for managing concurrent tasks, networking, and file system access. The project implements a standard-library-mirrored API, offering asynchronous versions of existing synchronous types to maintain a familiar interface. This approach allows for asynchronous Rust development using an interface that reflects the ergonomics of the language's standard library. The runtime includes a task executor for scheduling and executing

    Rustasyncasync-awaitasync-rust
    View on GitHub↗4,068
  • dpc/miocodpc avatar

    dpc/mioco

    148View on GitHub↗

    no longer maintained Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines).

    Rustasyncasynchronouscoroutines
    View on GitHub↗148
  • rust-lang/futures-rsrust-lang avatar

    rust-lang/futures-rs

    5,870View on GitHub↗

    Zero-cost asynchronous programming in Rust

    Rustasync-foundations
    View on GitHub↗5,870
  • tokio-rs/tokiotokio-rs avatar

    tokio-rs/tokio

    32,309View on GitHub↗

    Tokio is an asynchronous runtime for the Rust programming language, designed to manage and execute concurrent tasks efficiently. It provides a multi-threaded execution environment that schedules lightweight tasks across available processor cores, utilizing a work-stealing scheduler to balance computational load. By employing a poll-based execution model and waker-based notifications, the runtime drives asynchronous operations forward without requiring active polling loops, ensuring efficient resource utilization. The project distinguishes itself through a comprehensive suite of tools for high

    Rustasynchronousnetworkingrust
    View on GitHub↗32,309
  • zonyitoo/coio-rszonyitoo avatar

    zonyitoo/coio-rs

    463View on GitHub↗

    Coroutine I/O for Rust

    Rust
    View on GitHub↗463
  • tokio-rs/miotokio-rs avatar

    tokio-rs/mio

    7,024View on GitHub↗

    Mio is a low-level I/O library for Rust that provides an event-driven framework for monitoring multiple network sockets and file descriptors. It acts as a portable wrapper for operating system native polling systems, including epoll, kqueue, and IOCP, allowing applications to trigger events when resources are ready for reading or writing without blocking the execution thread. The library provides a non-blocking socket interface for managing TCP, UDP, and Unix sockets. It distinguishes itself through a vectored I/O implementation, enabling scatter-gather reads and writes across multiple buffer

    Rustasynchronousnetworkingnon-blocking
    View on GitHub↗7,024
  • teaentitylab/fprustTeaEntityLab avatar

    TeaEntityLab/fpRust

    124View on GitHub↗

    Monad/MonadIO, Handler, Coroutine/doNotation, Functional Programming features for Rust

    Rust
    View on GitHub↗124
  • igumnoff/gabriel2igumnoff avatar

    igumnoff/gabriel2

    26View on GitHub↗

    Gabriel2: Indeed, an actor library based on Tokio, written in Rust

    Rust
    View on GitHub↗26
  • abseil/abseil-cppabseil avatar

    abseil/abseil-cpp

    17,334View on GitHub↗

    Abseil is a common utility library for C++ that provides foundational building blocks for applications. It serves as a collection of optimized utility functions and data structures that augment the C++ standard library across different compiler versions. The library is distinguished by its high-performance containers, including SIMD-accelerated hash maps and sets for efficient key-value lookups. It also provides a comprehensive framework for computing absolute time points, durations, and timestamps across global time zones. The project covers a broad range of capability areas, including conc

    C++
    View on GitHub↗17,334
  • abkmystery/aneeabkmystery avatar

    abkmystery/ANEE

    1View on GitHub↗

    ANEE is an experimental dynamic inference wrapper for pretrained Transformer language models (currently GPT-2). Instead of always running all layers, ANEE exposes an energy_budget and performs early exit inside the model’s forward pass.

    Python
    View on GitHub↗1
  • 3dparallax/insight3Dparallax avatar

    3Dparallax/insight

    914View on GitHub↗

    A helpful Chrome extension for WebGL development

    JavaScript
    View on GitHub↗914
  • abhigyanpatwari/gitnexusabhigyanpatwari avatar

    abhigyanpatwari/GitNexus

    42,282View on GitHub↗
    TypeScript
    View on GitHub↗42,282
  • aaronbannin/looker-genaaronbannin avatar

    aaronbannin/looker-gen

    23View on GitHub↗

    Looker Gen

    Python
    View on GitHub↗23
  • 30-seconds/30-seconds-of-code30-seconds avatar

    30-seconds/30-seconds-of-code

    128,130View on GitHub↗

    This project is a developer knowledge base and a curated library of programming code snippets. It serves as a multi-language coding reference that provides short technical articles and reusable code samples to help developers implement common programming patterns. The resource functions as a multi-language syntax reference, allowing for the comparison of logic and functionality across different programming environments. It focuses on programming pattern learning and coding skill improvement through a collection of optimized patterns and best practices. The platform includes capabilities for

    JavaScript
    View on GitHub↗128,130
  • 0xax/erlang-bookmarks0xAX avatar

    0xAX/erlang-bookmarks

    1,154View on GitHub↗

    All about erlang programming language powerd by community

    View on GitHub↗1,154
  • aditya-khant/neural-assembly-compilerA

    aditya-khant/neural-assembly-compiler

    0View on GitHub↗
    View on GitHub↗0
  • adiny/moodtrip-hotel-searchadiny avatar

    adiny/moodtrip-hotel-search

    1View on GitHub↗

    Claude and Openclaw AI skill for hotel search & booking via MoodTrip.ai MCP server

    View on GitHub↗1
  • adolfousier/opencrabsadolfousier avatar

    adolfousier/opencrabs

    808View on GitHub↗

    The autonomous, self-improving AI agent. Single Rust binary. Every channel.

    Rust
    View on GitHub↗808
  • adolfousier/ratifactadolfousier avatar

    adolfousier/ratifact

    87View on GitHub↗

    Track and manage build artifacts from multiple programming languages.

    Rust
    View on GitHub↗87
  • adrientorris/awesome-blazorAdrienTorris avatar

    AdrienTorris/awesome-blazor

    9,307View on GitHub↗
    asp-net-coreaspnetcoreawesome
    View on GitHub↗9,307
  • aerogear/graphbackaerogear avatar

    aerogear/graphback

    408View on GitHub↗

    Graphback - Out of the box GraphQL server and client

    TypeScript
    View on GitHub↗408
  • ag14774/diffdistag14774 avatar

    ag14774/diffdist

    62View on GitHub↗
    Python
    View on GitHub↗62
  • agarrharr/awesome-cli-appsagarrharr avatar

    agarrharr/awesome-cli-apps

    18,722View on GitHub↗

    This project is a curated directory of command line applications and utilities designed to enhance developer productivity and streamline technical workflows. It serves as a comprehensive index of open-source software, categorizing tools that assist with system administration, development automation, and personal task management. The repository distinguishes itself by providing a structured collection of terminal-based software that spans diverse functional domains. It includes resources for managing infrastructure and cloud resources, performing code maintenance, and customizing terminal envi

    Shellawesomeawesome-listcli
    View on GitHub↗18,722
  • agentbay-ai/agentbay-skillsagentbay-ai avatar

    agentbay-ai/agentbay-skills

    42View on GitHub↗

    English | 中文

    Python
    View on GitHub↗42
  • a8m/pba8m avatar

    a8m/pb

    598View on GitHub↗

    Console progress bar for Rust

    Rust
    View on GitHub↗598