Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 906 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 906 Bytes

This is not the Repo you are looking for! 👽

New development is taking place in gitlab.com/pdylong/hello-gtk 👌.

example GTK app with Rust

Acknowledgment

Source

Requirements

GTK-RS Rust Bindings

Setup

 # 1.install rust nightly with rustup
 curl https://sh.rustup.rs -sSf | sh

 # 2. update 
 rustup update

 # 3. Install the Rust language Server (only for development)
 rustup component add rls-preview
 rustup component add rust-analysis
 rustup component add rust-src

Run

bash

  git clone https://github.com/creekpld/hello-gtk.git && /
  cd hello-gtk && /
  cargo run

fish

  git clone https://github.com/creekpld/hello-gtk.git; cd hello-gtk; cargo run