Skip to content

Commit

Permalink
Добавлено: Rust (Установка из репозитория)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiersik committed May 4, 2024
1 parent 97d608e commit 3f0eba6
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion docs/developers/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

Rust — современный системный язык программирования, разработанный для обеспечения безопасности, скорости и параллелизма. Он известен своей строгой системой типов и защитой от ошибок.

## Установка из репозитория

**Rust** можно установить через терминал:

::: code-group

```shell[apt-get]
su -
apt-get update
apt-get install rust-cargo
```
```shell[epm]
epm -i rust-cargo
```
:::

## Установка с официального сайта

**Rust** можно установить через терминал:
Expand All @@ -10,7 +26,11 @@ Rust — современный системный язык программир
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```

## Обновление:
## Обновление

::: info
Только при установке с официального сайта.
:::

```shell
rustup update
Expand Down

0 comments on commit 3f0eba6

Please sign in to comment.