Replies: 1 comment 5 replies
-
I think this doesn't exist in tokio.
Just out of curiosity, which part of tokio are you taking care of? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, i'm a developer of the OS debugger for rust named bugstalker.
At the moment I am focused on adding the ability to debug asynchronous applications. And for tokio there are already some working ideas and functionality (see this or this), and perhaps there will be more in the future.
But I have encountered a rather obvious problem - I cannot rely on the internal structures of tokio because they can change between different versions. Is it possible to get help from you in this? For example, for the debugger to work minimally with different versions of tokio, it would be enough to create a constant current version in the code (ex. const TOKIO_V: &str = "1.41.0" will be enought) so that the debugger could choose how to analyze the runtime. Of course, ideally it would be cool to have other points in the code that would be stable from the debugger's point of view.
Beta Was this translation helpful? Give feedback.
All reactions