diff --git a/hi-wasm/Cargo.toml b/hi-wasm/Cargo.toml index 954cbb8..524df3b 100644 --- a/hi-wasm/Cargo.toml +++ b/hi-wasm/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "hi-wasm" version = "0.1.0" -authors = ["Gunnlaugur รžรณr Briem "] edition = "2018" [lib] diff --git a/hi-wasm/README.md b/hi-wasm/README.md deleted file mode 100644 index 1e4617a..0000000 --- a/hi-wasm/README.md +++ /dev/null @@ -1,69 +0,0 @@ -
- -

wasm-pack-template

- - A template for kick starting a Rust and WebAssembly project using wasm-pack. - -

- Build Status -

- -

- Tutorial - | - Chat -

- - Built with ๐Ÿฆ€๐Ÿ•ธ by The Rust and WebAssembly Working Group -
- -## About - -[**๐Ÿ“š Read this template tutorial! ๐Ÿ“š**][template-docs] - -This template is designed for compiling Rust libraries into WebAssembly and -publishing the resulting package to NPM. - -Be sure to check out [other `wasm-pack` tutorials online][tutorials] for other -templates and usages of `wasm-pack`. - -[tutorials]: https://rustwasm.github.io/docs/wasm-pack/tutorials/index.html -[template-docs]: https://rustwasm.github.io/docs/wasm-pack/tutorials/npm-browser-packages/index.html - -## ๐Ÿšด Usage - -### ๐Ÿ‘ Use `cargo generate` to Clone this Template - -[Learn more about `cargo generate` here.](https://github.com/ashleygwilliams/cargo-generate) - -``` -cargo generate --git https://github.com/rustwasm/wasm-pack-template.git --name my-project -cd my-project -``` - -### ๐Ÿ› ๏ธ Build with `wasm-pack build` - -``` -wasm-pack build -``` - -### ๐Ÿ”ฌ Test in Headless Browsers with `wasm-pack test` - -``` -wasm-pack test --headless --firefox -``` - -### ๐ŸŽ Publish to NPM with `wasm-pack publish` - -``` -wasm-pack publish -``` - -## ๐Ÿ”‹ Batteries Included - -* [`wasm-bindgen`](https://github.com/rustwasm/wasm-bindgen) for communicating - between WebAssembly and JavaScript. -* [`console_error_panic_hook`](https://github.com/rustwasm/console_error_panic_hook) - for logging panic messages to the developer console. -* [`wee_alloc`](https://github.com/rustwasm/wee_alloc), an allocator optimized - for small code size.