Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kemokemo/rust-sketchbook
This is my sketchbook to learn Rust 🦀.
https://github.com/kemokemo/rust-sketchbook
learning rust sandbox
Last synced: 1 day ago
JSON representation
This is my sketchbook to learn Rust 🦀.
- Host: GitHub
- URL: https://github.com/kemokemo/rust-sketchbook
- Owner: kemokemo
- License: apache-2.0
- Created: 2020-08-03T06:18:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-20T22:44:02.000Z (almost 2 years ago)
- Last Synced: 2023-02-26T10:47:48.274Z (over 1 year ago)
- Topics: learning, rust, sandbox
- Language: Rust
- Homepage:
- Size: 1.14 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust sketchbook
This is my sketchbook to learn [Rust](https://www.rust-lang.org/ja/). I learn from the following books.
- [Rust in Action (from Manning)](https://www.manning.com/books/rust-in-action)
- [source code](https://github.com/rust-in-action/code)
- very awesome.## Install tools
```sh
$ cargo install cargo-edit
$ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
$ cargo install miniserve
$ cargo install cargo-generate
```You can use `cargo add` subcommand by installing the `cargo-edit`. Please check [here](https://github.com/killercup/cargo-edit#cargo-add) and [here](https://github.com/rust-lang/cargo/issues/2179#issuecomment-429337378).
## Useful examples
- [wasm-bindgen](https://rustwasm.github.io/docs/wasm-bindgen/introduction.html)