Commit Graph

827 Commits (c413e717dac09620b59d5e2ad67968453bce2850)
 

Author SHA1 Message Date
Yoshua Wuyts c413e717da
Merge pull request #429 from markhildreth/tcp_smoke_tests
Added TCP smoke tests against std Listener and Stream
5 years ago
Yoshua Wuyts 911ebada0b
Merge pull request #434 from paulocsanz/master
Put everything behind a 'stable' feature to avoid future breaking changes
5 years ago
Aleksey Kladov ec1a6ea3e8 Fix typo (#439) 5 years ago
Tyler Neely 5adc608791 Spawn several threads when we fail to enqueue work in the blocki… (#181)
* Rebase onto master

* Switch to unbounded channels
5 years ago
Sheyne Anderson 1a51ca424a Fix typo in tutorial in book (#412) 5 years ago
Florian Gilcher d5fd035956 Small example for a TCP server that both handles IP v4 and v6 (#418)
* Add a small example for listening to both ipv4 and ipv6

Presenting stream merge on Incoming.

* Change stable checks workflow to not cover examples, but tests
5 years ago
Yoshua Wuyts e17a6703c8
Merge pull request #415 from k-nasa/stream_from_iter
Add stream::from_iter
5 years ago
Paulo 8e991bcd3a Fix typo 5 years ago
Paulo 2e66c38453 Simplify default feature 5 years ago
k-nasa 2f3c867d44 Merge branch 'master' into stream_from_iter 5 years ago
k-nasa 063798ce49 Add doc 5 years ago
Yoshua Wuyts a3b742188d fix doc tests (#431)
* fix doc tests

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>

* cargo fmt

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
5 years ago
Florian Gilcher 57670dd9d7
Merge pull request #433 from JohnTitor/remove-deprecated-action
Remove deprecated action
5 years ago
Paulo dcd7c55cef Put everything behind a 'stable' feature 5 years ago
Yuki Okushi 277fd521bc Remove deprecated action 5 years ago
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
Mark Hildreth c6c2bfa456 Added TCP smoke tests against std Listener and Stream 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 40c4e1a29d feat: Add stream::from_iter 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