From 1066780cffcad7c8af2836c46abc692eb68429b6 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Fri, 12 Jan 2024 14:57:50 +0100 Subject: [PATCH] readme --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e5e5fcd..2258f9d 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ # 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 -- [`src/bin`] contains binaries that are too small to justify a complete - directory. +Unsafe rust offers many possibilities otherwise locked from rust, which might +cause undefined behavior (or are dubbed unsafe for other reasons). Let's be +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.