A rust version of the jedi library in python

Hey! i'm making my own programming language and i'm in the phase of making an LSP.
i've written an LSP for python with the jedi library and this is what i've used on the python lsp

* jedi.Script.goto
* jedi.Script.infer
* jedi.Script.help
* jedi.Script.complete
* jedi.Script.get_references
* jedi.Script.get_signatures
* jedi.Script.get_context

Is there a way to do any of these in rust for rust?

I got an idea. if there isn't a wrapper/way to do any of the above.

what if i made the lsp server in go and then used the rust-analyzer command and make the wrapper myself but in go which makes lsp easier

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.