Initial commit

This commit is contained in:
Andrew Golovashevich 2026-02-03 11:54:56 +03:00
commit 1f27f25d32
4 changed files with 13 additions and 0 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[registries]
landgrafhomyak = { index = "sparse+https://cargo.landgrafhomyak.ru/" }

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.idea/
Cargo.lock
target/

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name =
edition = "2024"
[lints.rust]
nonstandard_style = "allow"
unsafe_op_in_unsafe_fn = "allow"

1
src/lib.rs Normal file
View File

@ -0,0 +1 @@
#![no_std]