dewit 0.0.1

Define scheduling and execution of code separately from data flow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![no_std]
#![forbid(missing_docs, unconditional_panic, unsafe_code)]
#![feature(future_join)]

#[cfg(any(feature = "alloc", test))]
extern crate alloc;
extern crate core;

pub mod combinators;
pub mod mode;
pub mod prelude;
pub mod prelude_no_combinators;
pub mod task;