34 releases

0.8.1 Mar 6, 2024
0.7.6 Feb 27, 2024
0.7.5 Jun 24, 2023
0.7.3 Feb 23, 2023
0.2.0 Nov 12, 2015

#37 in Data structures

Download history 126568/week @ 2024-01-07 78205/week @ 2024-01-14 56115/week @ 2024-01-21 56441/week @ 2024-01-28 62441/week @ 2024-02-04 74863/week @ 2024-02-11 58811/week @ 2024-02-18 65279/week @ 2024-02-25 65259/week @ 2024-03-03 54833/week @ 2024-03-10 59521/week @ 2024-03-17 57906/week @ 2024-03-24 56192/week @ 2024-03-31 56727/week @ 2024-04-07 61096/week @ 2024-04-14 64630/week @ 2024-04-21

241,949 downloads per month
Used in 941 crates (12 directly)

MIT/Apache

97KB
2.5K SLoC

Rust 2K SLoC // 0.2% comments GNU Style Assembly 415 SLoC // 0.0% comments

Build Status Current Crates.io Version Document

Generator-rs

rust stackful generator library

[dependencies]
generator = "0.8"

Usage

use generator::{done, Gn};

fn main() {
    let g = Gn::new_scoped(|mut s| {
        let (mut a, mut b) = (0, 1);
        while b < 200 {
            std::mem::swap(&mut a, &mut b);
            b = a + b;
            s.yield_(b);
        }
        done!();
    });

    for i in g {
        println!("{}", i);
    }
}

Output

1
2
3
5
8
13
21
34
55
89
144
233

Goals

  • basic send/yield with message support
  • generator cancel support
  • yield_from support
  • panic inside generator support
  • stack size tune support
  • scoped static type support
  • basic coroutine interface support
  • stable rust support

based on this basic library

  • we can easily port python library based on generator into rust
  • coroutine framework running on multi thread

Notices

  • This crate supports below platforms, welcome to contribute with other arch and platforms

    • x86_64 Linux
    • x86_64 macOS
    • x86_64 Windows
    • x86_64 Fuchsia
    • x86_64 Android
    • aarch64 Linux
    • aarch64 macOS
    • aarch64 Fuchsia
    • aarch64 Android
    • loongarch64 Linux
    • armv7 Linux
    • riscv64 Linux

License

This project is licensed under either of the following, at your option:

Dependencies

~0–39MB
~566K SLoC