rcsaquino / rsautogui

rsautogui is a GUI automation rust crate for windows.
MIT License
21 stars 1 forks source link

howTo install? #1

Closed sl5net closed 1 year ago

sl5net commented 1 year ago

i not a rust user at the moment. What i do first? requirements to use rust scripts? this? https://rust-script.org/#installation

rcsaquino commented 1 year ago

i not a rust user at the moment. What i do first? requirements to use rust scripts? this? https://rust-script.org/#installation

Assuming you have rust installed and have a new cargo project ready, just type in your terminal from the project root cargo add rsautogui. If you prefer to do things manually, you can do so by adding rsautogui = "*" to your project dependencies in the cargo.toml file of your project.

If you don't have rust installed yet, or is unfamiliar with rust, I suggest you read the rust book first. If you prefer videos you can watch this series on youtube instead which is based on the rust book.