netrix 0.0.0

A Matrix chat client written using Makepad + Robius app dev framework in Rust.
1
2
3
4
5
6
7
8
9
10
// this stub is necessary because some platforms require building
// as dll (mobile / wasm) and some require to be built as executable
// unfortunately cargo doesn't facilitate this without a main.rs stub

// This cfg option hides the command prompt console window on Windows.
// TODO: move this into Makepad itself as an addition to the `MAKEPAD` env var.

fn main() {
    println!("Hello, world!");
}