summaryrefslogtreecommitdiffstats
path: root/tokio
AgeCommit message (Expand)Author
2019-11-21runtime: cleanup and add config options (#1807)Carl Lerche
2019-11-21docs: expand and update crate-level docs (#1806)Eliza Weisman
2019-11-20docs: update and expand the `tokio::runtime` API docs (#1804)Eliza Weisman
2019-11-20docs: refresh `tokio::io` API docs (#1803)Eliza Weisman
2019-11-20io: flatten `split` module (#1802)Carl Lerche
2019-11-20docs: improve `tokio::task` API documentation (#1801)Eliza Weisman
2019-11-20chore: update `bytes` dependency to git master (#1796)Carl Lerche
2019-11-20time: Eagerly bind delays to timer (#1800)Kevin Leimkuhler
2019-11-20Fix doc links (#1799)Pen Tree
2019-11-20net: flatten `split` mod (#1797)Carl Lerche
2019-11-20chore: enable feature flag check on windows (#1798)Taiki Endo
2019-11-20Refactor the I/O driver, extracting slab to `tokio::util`. (#1792)Carl Lerche
2019-11-19runtime: fix lost wakeup bug in scheduler (#1788)Carl Lerche
2019-11-18chore: refine feature flags (#1785)Carl Lerche
2019-11-17sync: require `T: Clone` for watch channels. (#1783)Carl Lerche
2019-11-16make AtomicWaker private (#1782)Carl Lerche
2019-11-16task: move blocking fns into `tokio::task` (#1781)Carl Lerche
2019-11-16runtime: set spawn context on enter (#1780)Carl Lerche
2019-11-16io: expose std{in, out, err} under io feature (#1759)Taiki Endo
2019-11-16chore: migrate from pin-project to pin-project-lite (#1778)Taiki Endo
2019-11-16task: return `JoinHandle` from spawn (#1777)Carl Lerche
2019-11-16runtime: rename current_thread -> basic_scheduler (#1769)Carl Lerche
2019-11-15runtime: allow non-unit type output in {Runtime, Spawner}::spawn (#1756)Taiki Endo
2019-11-15net: add more impls for ToSocketAddrs (#1760)Taiki Endo
2019-11-15Limit `futures` dependency to `Stream` via feature flag (#1774)Carl Lerche
2019-11-12reorganize modules (#1766)Carl Lerche
2019-11-06time: rename `tokio::timer` -> `tokio::time` (#1745)Carl Lerche
2019-11-06runtime: misc pool cleanup (#1743)Carl Lerche
2019-11-06timer: have example use delay_for instead of delay (#1735)leo-lb
2019-11-07chore: update futures to 0.3.0 (#1741)Taiki Endo
2019-11-06simplify enter (#1736)Carl Lerche
2019-11-05fix clippy (#1737)Carl Lerche
2019-11-05runtime: combine `executor` and `runtime` mods (#1734)Carl Lerche
2019-11-04chore: unify all mocked `loom` files (#1732)Carl Lerche
2019-11-04executor: switch some APIs to crate private. (#1731)Carl Lerche
2019-11-03test: unify MockTask and task::spawn (#1728)Carl Lerche
2019-11-03impl AsyncWrite for std::io::Cursor (#1730)Sebastian Dröge
2019-11-02tests: fix bug + reorganize tests. (#1726)Carl Lerche
2019-11-02chore: prune dev-dependenciesCarl Lerche
2019-11-01executor: remove Executor & TypedExecutor traits (#1724)Carl Lerche
2019-11-01runtime: merge multi & single threaded runtimes (#1716)Carl Lerche
2019-11-01Fix delay construction from non-lazy Handles (#1720)Steven Fackler
2019-11-01compat: add a compat runtime (#1663)Eliza Weisman
2019-11-01chore: remove dead files (#1718)Carl Lerche
2019-10-31runtime: test creating a single-threaded runtime. (#1717)Carl Lerche
2019-10-31chore: check each feature works properly (#1695)Taiki Endo
2019-10-30timere: make Delay must_use (#1714)Steven Fackler
2019-10-30process: refactor OrphanQueue to use a Mutex instead fo SegQueue (#1712)Sean McArthur
2019-10-30thread-pool: in-place blocking with new scheduler (#1681)Jon Gjengset
2019-10-29timer: inline CachePadded type (#1706)Sean McArthur