A graphical standalone program to note some text and transform it to Qrcode for «smart»phone copy/paste
To compile and run QRNote you will need Cargo. It can be compiled and run with following command :
$ cd qr-note
$ cargo run
Installation also need cargo with install command and binary path :
$ cd qr-note
$ cargo install --path .
-
Install Rust by following the Rust Getting Started Guide. Once this is done, you should have the
rustc
compiler and thecargo
build system installed in your path. -
Install
cargo-generate
cargo install cargo-generate
- Set up a sample project with this template
https://github.com/slint-ui/slint-rust-template --name my-project cd
my-project```
3. Build with cargo
``` cargo build ```
4. Run the application binary
``` cargo run ```
## Web assembly compilation
1. Install wasm :
```cargo install wasm-pack```
2. Compile QRNote
```wasm-pack build --release --target web```
3. Launch (doesn't works for the moment)
```python3 http.server```