Skip to content

Commit

Permalink
Rust++
Browse files Browse the repository at this point in the history
  • Loading branch information
Aif4thah committed Sep 13, 2024
1 parent e08d1f8 commit c2392b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Dojo-101-DevSec/Rust-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ démo des fonctions de sécurité de RUST
## Ressources

* [RUST](https://www.rust-lang.org/)

* [Guide ANSSI](https://anssi-fr.github.io/rust-guide/)

* [Play rust (online)](https://play.rust-lang.org/)

## Compilation

```powershell
Expand Down Expand Up @@ -63,6 +66,7 @@ jobs:
```rust
let x = 5; // immuable
let mut y = 5; // la valeur pourra etre modifiée
let z = &x; // y est une référence à x, utilise la valeurs sans en prendre la possession
```

## lever une exception
Expand Down
5 changes: 3 additions & 2 deletions quality/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/*
Script de maintenance du contenu Dojo-101
- Dépendances et compilation du script vérifié via github Action: Oui
Dépendances et compilation du script vérifié via github Action: Oui
- Exécution du script lors des workflows : Non (Lancement Manuel)
Exécution du script lors des workflows : Non (Lancement et contrôles manuels)
*/

Expand Down

0 comments on commit c2392b5

Please sign in to comment.