1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//! # Rust Stackful Coroutine Library
//!
//! May is a high performance stackful coroutine library that can be thought of rust version `goroutine`.
//! You can use it easily to design and develop massive concurrent programs in Rust.
//!
//! ## Features
//!
//! * Stackful coroutine implementation based on stackful `generator`
//! * Support schedule on configurable number of threads for multi-cores
//! * Support coroutine version local storage
//! * Support efficient network async IO
//! * Support efficient timer management
//! * Support standard sync primitives plus semaphore, mpmc channel etc.
//! * Support cancellation of coroutines
//! * Support graceful panic handling that will not affect other coroutines
//! * Support scoped coroutine creation
//! * Support general select for all the coroutine APIs
//! * All the coroutine APIs are compatible with std library semantics
//! * All the coroutine APIs can be safely called in thread context
//!

// #![deny(missing_docs)]
#![allow(unused_extern_crates)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::cast_ref_to_mut))]
#![cfg_attr(nightly, feature(specialization))]
#![cfg_attr(nightly, feature(core_intrinsics))]

#[macro_use]
#[doc(hidden)]
extern crate log;
#[doc(hidden)]
extern crate socket2;
// windows platform not use this crate
#[doc(hidden)]
extern crate crossbeam;
#[doc(hidden)]
extern crate generator;
#[doc(hidden)]
extern crate may_queue;
#[doc(hidden)]
extern crate smallvec;
#[cfg(test)]
#[doc(hidden)]
extern crate tempdir;

#[cfg(windows)]
#[doc(hidden)]
extern crate miow;
#[cfg(windows)]
#[doc(hidden)]
extern crate winapi;

#[cfg(unix)]
#[doc(hidden)]
extern crate libc;
#[cfg(unix)]
#[doc(hidden)]
extern crate nix;

mod cancel;
mod config;
mod join;
mod local;
mod park;
mod pool;
mod sleep;
#[macro_use]
mod macros;
mod coroutine_impl;
mod scheduler;
mod scoped;
mod timeout_list;
mod yield_now;

pub mod coroutine;
pub mod cqueue;
pub mod io;
pub mod net;
pub mod os;
pub mod sync;
pub use config::{config, Config};
pub use local::LocalKey;