Commit Graph

587 Commits (141954d205c4a5e5da4c5fbf551e88ce7a7c2b53)
 

Author SHA1 Message Date
Wouter Geraedts 141954d205 Implemented Path::parent 5 years ago
Wouter Geraedts cc57db02a3 Implemented Path::join 5 years ago
Wouter Geraedts 0c03b92373 Implemented Path::iter 5 years ago
Wouter Geraedts 5d87006006 Implemented Path::is_relative 5 years ago
Wouter Geraedts df9a01f534 Implemented Path::is_file 5 years ago
Wouter Geraedts 20f58ea1c1 Implemented Path::is_absolute 5 years ago
Wouter Geraedts 3a9597cd32 Implemented Path::has_root 5 years ago
Wouter Geraedts 28e936f6fe Implemented Path::file_stem 5 years ago
Wouter Geraedts a6e1abecfc Implemented Path::file_name 5 years ago
Wouter Geraedts a7eaae91ae Implemented Path::extension 5 years ago
Wouter Geraedts 4070833482 Implemented Path::ends_with 5 years ago
Wouter Geraedts 5235cd58be Implemented Path::display 5 years ago
Wouter Geraedts 759e357bea Implemented Path::ancestors 5 years ago
Wouter Geraedts a57ba7ece0 Implemented Path::into_path_buf 5 years ago
Wouter Geraedts 6c6106a292 Implemented Path::{metadata, symlink_metadata} 5 years ago
Wouter Geraedts 6bbfd039b1 Fixed various tests 5 years ago
Wouter Geraedts e690b55b18 Implemented fs::metadata and Path::exists 5 years ago
Wouter Geraedts 930b81868d Use std variants of Path and PathBuf internally 5 years ago
Wouter Geraedts 3bd6a9df6d Implemented components 5 years ago
Wouter Geraedts e27b578c27 WIP init Path and PathBuf async stubs 5 years ago
Yoshua Wuyts 30b5ca5851
Merge pull request #296 from stjepang/cleanup-bufwriter
Cleanup BufWriter
5 years ago
Yoshua Wuyts d1fe965a0e
Merge pull request #283 from taiki-e/bors
Add GitHub Actions to the merge requirement of bors
5 years ago
Yoshua Wuyts 9c32133f77
Merge pull request #295 from stjepang/cleanup-tosocketaddrs
Cleanup ToSocketAddrs, add more net reexports
5 years ago
Yoshua Wuyts 41bf106e21
Merge pull request #297 from stjepang/stabilize-cursor
Stabilize io::Cursor
5 years ago
Stjepan Glavina de01a5c5b7 Stabilize io::Cursor 5 years ago
Stjepan Glavina c890de2c52 Fix failing doc example 5 years ago
Stjepan Glavina da2335bd57 Cleanup BufWriter 5 years ago
Stjepan Glavina cbd458b1db Cleanup ToSocketAddrs, add more net reexports 5 years ago
Yoshua Wuyts e75c3a930c
Merge pull request #294 from async-rs/blocking-docs
add task::blocking docs
5 years ago
Yoshua Wuyts a06a52dc15
Merge pull request #292 from async-rs/prep-v0.99.9
prepare v0.99.9
5 years ago
Yoshua Wuyts fc904a22cd
add task::blocking docs
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts a7daae6f9c
prepare v0.99.9
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 9ab7b1ae6e
Merge pull request #251 from async-rs/blocking-unstable
add an unstable `task::blocking` function
5 years ago
Yoshua Wuyts 460b8af50b
Merge pull request #287 from k-nasa/optimizing_allocations
Optimizing allocations using Stream::size_hint
5 years ago
Yoshua Wuyts c27623c0fd
cargo fmt
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 647aab819f
impl feedback
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts df15c04f28
spawn_blocking -> blocking
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
k-nasa 1c798387bf $cargo fmt 5 years ago
Taiki Endo f8af22ff98 Remove travis from requirements 5 years ago
Taiki Endo 5b9d34a34c Tweak job name 5 years ago
Taiki Endo d9d59dc710 Add GitHub Actions to the merge requirement of bors 5 years ago
k-nasa 9cede7f1e3 refactor: optimizing allocations 5 years ago
Miloš Vučenović c3e38150e4 Fix uds listener hanging on accept (#272)
* Fix uds listener hanging on accept

UDS listener was hanging because the accept method would return
`Poll::Pending` without registering the task to be awoken in the case
when underlying unix listener returns a WouldBlock that gets converted
to None. This is a hacky fix for this case.

Should fix #248

* Test simulating uds ping-pong server/client

This one should reproduce #248 bug to prevent further regressions.

* Code review fixes
5 years ago
Yoshua Wuyts 5f708f3c4f
Merge pull request #270 from k-nasa/fix_clippy_warn
Fix clippy warning
5 years ago
Yoshua Wuyts 46ffe6ab63
Merge pull request #278 from Michael-J-Ward/fix-readme
Fixes feature flag used in generating the docs in the README
5 years ago
Michael J Ward 75b6c60c67 Corrects a cfg feature declaration in task/mod.rs 5 years ago
Michael J Ward 0d521cb77c Removes unstable feature flag from CI doc commands
Per Stjepan Glavina, this flag is superfluous because #[cfg(any(feature = "unstable", feature = "docs"))]
is used everywhere in the codebase.

Discussion: https://github.com/async-rs/async-std/pull/278#issuecomment-538744737
5 years ago
Michael J Ward cf6277bcdc Adds +nightly to cargo commands in README 5 years ago
bors[bot] ddee47231a
Merge #282
282: init path submodule as unstable r=yoshuawuyts a=yoshuawuyts

Ref #183.

Similar to #257 this adds the `path` submodule as unstable. Filling in all re-exports from std for module completion. From there the we can build out `Path` and `PathBuf` accordingly. Thanks!

Co-authored-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 5b05846fb0
init path submodule as unstable
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago