├── .gitignore ├── .jsbeautifyrc ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── index.html ├── main.js ├── main_module.js ├── package.json ├── preload.js ├── src └── lib.rs └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /wasm/ 3 | /target/ 4 | -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/main.js -------------------------------------------------------------------------------- /main_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/main_module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/package.json -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/preload.js -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/src/lib.rs -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anderejd/electron-wasm-rust-example/HEAD/style.css --------------------------------------------------------------------------------