fixed rust-ana;yzer + documented

This commit is contained in:
clizia 2025-08-23 02:43:58 +02:00
parent ad74990ef4
commit ff4bbdd263
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,11 @@ name = "totos"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "totos"
test = false
bench = false
[profile.dev]
panic = "abort" # disable stack unwinding on panic

View file

@ -1,5 +1,5 @@
#![no_std]
#![no_main]
#![no_std] // dont link the standard library
#![no_main] // disable all rust-level entry points
use core::panic::PanicInfo;