Commit Graph

810 Commits (87de4e15982bbec890aa909600da5997c4f6edc7)
 

Author SHA1 Message Date
Stjepan Glavina 87de4e1598
Add utility type WakerSet to the sync module (#390)
* Add utility type Registry to the sync module

* Remove unused import

* Split unregister into complete and cancel

* Refactoring and renaming

* Split remove() into complete() and cancel()

* Rename to WakerSet

* Ignore clippy warning

* Ignore another clippy warning

* Use stronger SeqCst ordering
5 years ago
Stjepan Glavina 3dd59d7056
Refactor the task module (#421)
* Refactor the task module

* Fix clippy warning

* Simplify task-local entries

* Reduce the amount of future wrapping

* Cleanup

* Simplify stealing
5 years ago
Yoshua Wuyts c1e8517959
Merge pull request #414 from k-nasa/fix_github_actions
Add only rustfmt on Checking fmt and docs actions
5 years ago
Yoshua Wuyts cc75b65b8c
Merge pull request #409 from yjhmelody/stream-min
Add Stream min
5 years ago
Yoshua Wuyts f102588df5
Merge pull request #428 from zhangguyu6/stream-position
Add stream position
5 years ago
Yoshua Wuyts 3e0fe742f6
Merge pull request #427 from yjhmelody/stream-ne
Add stream ne
5 years ago
Yoshua Wuyts 65dcaf4464
Merge pull request #426 from yjhmelody/stream-eq
Add stream eq
5 years ago
zhangguyu 07d21e5eb3 change trait bounds 5 years ago
zhangguyu 48c82a9668 Add stream position 5 years ago
yjhmelody 1ab3d901e4 fmt code 5 years ago
yjhmelody 204da33391 fmt code 5 years ago
yjhmelody 17db7ffcd3 Add stream ne 5 years ago
yjhmelody f5efaaa7ba Add stream eq 5 years ago
Yoshua Wuyts cc949f48ea
Merge pull request #420 from JayatiGoyal/master
correction of a typo
5 years ago
JayatiGoyal 5fee91c050
corrected a typo 5 years ago
Wu Yu Wei ff6a44fcd5 Use once_cell instead of lazy_static (#416)
`once_cell` provides a neat way of initializing lazy singletons without
macro. This PR use `sync::Lazy` to streamline same pattern proposed in
related rust RFC.

Resolve #406
5 years ago
k-nasa 3620b2b6ab fix: Add only rustfmt on Checking fmt and docs actions 5 years ago
yjhmelody 021862dcc8 fix min 5 years ago
yjhmelody b942d0a405 add stream-min 5 years ago
Yoshua Wuyts da795dec7b
Merge pull request #399 from async-rs/release-0.99.11
v0.99.11
5 years ago
Yoshua Wuyts 2adaaa9d3f
more updates
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts b10930207c
more
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts b3d1fa9c98
v0.99.11
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 2b1c6f04ea
Merge pull request #384 from yjhmelody/stream-max_by
add stream::max_by method
5 years ago
Yoshua Wuyts 5ff4ef8dd4
Merge pull request #385 from yjhmelody/stream-min_by_key
add stream::min_by_key method
5 years ago
Yoshua Wuyts f311e3de9f
Merge pull request #397 from async-rs/sync-docs
add mod level docs for sync
5 years ago
Yoshua Wuyts 3a06a1211b
Add feedback from review
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 526c4da21a
Merge pull request #395 from async-rs/stream-docs
add stream mod docs
5 years ago
Yoshua Wuyts 997e811c58
Merge pull request #402 from async-rs/fuse-docs
update Stream::fuse docs
5 years ago
Yoshua Wuyts 11d0577407
Merge pull request #396 from async-rs/net-docs
standardize net docs
5 years ago
Yoshua Wuyts eb081b1948
Apply suggestions from code review
Co-Authored-By: Florian Gilcher <florian.gilcher@ferrous-systems.com>
5 years ago
Yoshua Wuyts 1175a37c47
Merge pull request #367 from k-nasa/add_stream_flatten
Add Stream::flatten and Stream::flat_map
5 years ago
Yoshua Wuyts 206bedfd12
Merge pull request #349 from k-nasa/add_future_delay
Add future::delay
5 years ago
k-nasa 1554b04407 $cargo fmt 5 years ago
k-nasa 1545d24e50 Merge branch 'master' into add_future_delay 5 years ago
k-nasa ae7adf2c36 fix: Remove unused import 5 years ago
k-nasa 040227f38a Merge branch 'master' into add_stream_flatten 5 years ago
k-nasa 688976203e fix: Split FlattenCompat logic to Flatten and FlatMap 5 years ago
k-nasa c7dc147f73 fix indent 5 years ago
Yoshua Wuyts b3ae6f2b03
update Stream::fuse docs
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts 4ecf49fe95
Merge pull request #401 from async-rs/fix-recursion-limit
fix doc recursion limit
5 years ago
Yoshua Wuyts 4346386610
fix doc recursion limit
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Yoshua Wuyts ca4856a0e8
Merge pull request #377 from ktomsic/sum-and-product-impls
Add `Stream::sum()` and `Stream::product()` implementations
5 years ago
Yoshua Wuyts e5675151b9
Merge pull request #364 from stjepang/optimize-flushing
Don't flush files if they weren't written to
5 years ago
Yoshua Wuyts fd940b8c6a
Merge pull request #348 from k-nasa/add_stream_timeout
Add stream timeout
5 years ago
Yoshua Wuyts 1baee98ead
Merge pull request #375 from sunjay/fromstream-pathbuf
Added Extend + FromStream for PathBuf
5 years ago
k-nasa 613895d6be doc: fix documantation text 5 years ago
Florian Gilcher f262fd8a40
Merge pull request #392 from taiki-e/clippy
Remove usage of actions-rs/clippy-check
5 years ago
Florian Gilcher c2a084ed4a
Merge pull request #393 from k-nasa/fix_clippy
Fix clippy warnings
5 years ago
Florian Gilcher ae41d45da6
Merge pull request #376 from AZanellato/typo-fixes
Typos and sentence structure fixes
5 years ago