Initial commit

This commit is contained in:
LanguageUtilities 2026-02-03 09:06:04 +00:00 committed by Andrew Golovashevich
commit eaa9de1bca
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 = "number-utilities-0"
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]