Robtor Framework & RUST

Hi All,

Is there any plan to support RUST without pyd file. like directly calling python libraries from robot framework to avoid python version dependencies with pyd.

I dont think so.

Alternative would be to make a Remote Library for a Rust. Documentation/Specs are here; Robot Framework User Guide

And currently implemented remote library servers are mentioned here GitHub - robotframework/RemoteInterface: Introduction to the remote interface with a list of available remote servers if you need some inspiration and can read other languages.

1 Like

Iā€™d go with creating a simple Python library that does provide the keywords, which are just decorated Python methods. Those methods can call the Rust bindings to offload the actual execution logic to Rust.