-
Notifications
You must be signed in to change notification settings - Fork 88
async_std support? #77
Comments
Hello, That's something I'd love to have, but I have little time these days, so I'm not working on new features. However I'd gladly accept a PR for this. Perhaps we should discuss first how to do this though. Currently, there are two places where we have tokio specific code:
|
As noted in in the link to The second item would require some modification to use |
I really need this support, I can take care of the implementation. |
The biggest piece is actually |
Sure, I'll take a look at the code to understand what the code does and I'll come back with more thoughts on this. |
It's not too bad actually. I think we only use use pub mod sys {
pub use netlink_sys::{protocols, SocketAddr, TokioSocket as Socket};
} Maybe we can add a |
That is correct, other crates usually use features to select the async framework. I also think that this feature should be re-exposed also by the creates that depend on |
Implemented by #144. |
This is a well crafted crate. Thanks for implementing it!
Is there a plan to make it work with async_std instead of tokio?
The text was updated successfully, but these errors were encountered: