readme
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 1m50s Details

This commit is contained in:
Christoph J. Scherr 2024-01-12 14:57:50 +01:00
parent d90b82e2b5
commit 1066780cff
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,11 @@
# Rust basics # Rust basics
This repository aims to contain basics for the rust language. This project contains various smaller rust projects, often made by myself to
gain more understanding with a topic or dependency.
## Structure ## Rust unsafe
- [`modules`] contains complete small `cargo` projects Unsafe rust offers many possibilities otherwise locked from rust, which might
- [`src/bin`] contains binaries that are too small to justify a complete cause undefined behavior (or are dubbed unsafe for other reasons). Let's be
directory. honest, they are hacks. But they can have fun uses and are sometimes interesting
to explore, if only to see how the underlying system works.