Michael Lubinsky

← Home

Rust

https://play.rust-lang.org/

https://learning-rust.github.io/

Free book: Effective Rust https://www.lurklurk.org/effective-rust/title-page.html

Book: Rust for C++ devs https://vnduongthanhtung.gitbooks.io/migrate-from-c-to-rust/content/

https://habr.com/ru/companies/ruvds/articles/884262/ Парсер JSON в 500 строках Rust

https://www.krish.gg/blog/json-parser-in-rust Парсер JSON в 500 строках Rust

https://habr.com/ru/companies/bitrix/articles/878912/

https://www.reddit.com/r/rust/comments/1i4wv95/what_are_some_lesserknown_rust_books_worth_reading/

https://google.github.io/comprehensive-rust/

https://doc.rust-lang.org/stable/book/foreword.html

https://www.lurklurk.org/effective-rust/intro.html

https://overexact.com/rust-for-professionals/

https://rust-unofficial.github.io/too-many-lists/index.html

https://rustbattle.net/

https://github.com/TheAlgorithms/Rust

Build SQL database in Rust

https://blog.sylver.dev/build-your-own-sqlite-part-4-reading-tables-metadata

curl https://sh.rustup.rs -sSf | sh
info: downloading installer

Welcome to Rust!

This will download and install the official compiler for the Rust
programming language, and its package manager, Cargo.

Rustup metadata and toolchains will be installed into the Rustup
home directory, located at:

  /Users/mlubinsky/.rustup

This can be modified with the RUSTUP_HOME environment variable.

The Cargo home directory is located at:

  /Users/mlubinsky/.cargo

This can be modified with the CARGO_HOME environment variable.

The cargo, rustc, rustup and other commands will be added to
Cargo's bin directory, located at:

  /Users/mlubinsky/.cargo/bin

This path will then be added to your PATH environment variable by
modifying the profile files located at:

  /Users/mlubinsky/.profile
  /Users/mlubinsky/.bash_profile
  /Users/mlubinsky/.zshenv

You can uninstall at any time with rustup self uninstall and
these changes will be reverted.

Current installation options:


   default host triple: aarch64-apple-darwin
     default toolchain: stable (default)
               profile: default
  modify PATH variable: yes

1) Proceed with standard installation (default - just press enter)
2) Customize installation
3) Cancel installation
>

info: profile set to 'default'
info: default host triple is aarch64-apple-darwin
info: syncing channel updates for 'stable-aarch64-apple-darwin'
info: latest update on 2024-10-17, rust version 1.82.0 (f6e511eec 2024-10-15)
info: downloading component 'cargo'
info: downloading component 'clippy'
info: downloading component 'rust-docs'
info: downloading component 'rust-std'
info: downloading component 'rustc'
 54.7 MiB /  54.7 MiB (100 %)  44.6 MiB/s in  1s ETA:  0s
info: downloading component 'rustfmt'
info: installing component 'cargo'
info: installing component 'clippy'
info: installing component 'rust-docs'
 16.3 MiB /  16.3 MiB (100 %)   6.2 MiB/s in  2s ETA:  0s
info: installing component 'rust-std'
 23.4 MiB /  23.4 MiB (100 %)  19.3 MiB/s in  1s ETA:  0s
info: installing component 'rustc'
 54.7 MiB /  54.7 MiB (100 %)  20.1 MiB/s in  2s ETA:  0s
info: installing component 'rustfmt'
info: default toolchain set to 'stable-aarch64-apple-darwin'

  stable-aarch64-apple-darwin installed - rustc 1.82.0 (f6e511eec 2024-10-15)


Rust is installed now. Great!

To get started you may need to restart your current shell.
This would reload your PATH environment variable to include
Cargo's bin directory ($HOME/.cargo/bin).

To configure your current shell, you need to source
the corresponding env file under $HOME/.cargo.

This is usually done by running one of the following (note the leading DOT):
. "$HOME/.cargo/env"            # For sh/bash/zsh/ash/dash/pdksh
source "$HOME/.cargo/env.fish"  # For fish

Build a Database with the Rust Open-Source Community

https://tisonkun.io/posts/oss-twin