├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── screenshot.png ├── examples └── hello_world.rs ├── library ├── webview.c └── webview.h └── src ├── ffi.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /examples/hello_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/examples/hello_world.rs -------------------------------------------------------------------------------- /library/webview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/library/webview.c -------------------------------------------------------------------------------- /library/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/library/webview.h -------------------------------------------------------------------------------- /src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/src/ffi.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanhoff/rust-webview/HEAD/src/lib.rs --------------------------------------------------------------------------------