commit 1f27f25d32fe22eb88425bfab70e530f010c4be6 Author: Andrew Golovashevich Date: Tue Feb 3 11:54:56 2026 +0300 Initial commit diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..d4fa5d9 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[registries] +landgrafhomyak = { index = "sparse+https://cargo.landgrafhomyak.ru/" } \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5488f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.idea/ +Cargo.lock +target/ \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9a1ab22 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = +edition = "2024" + +[lints.rust] +nonstandard_style = "allow" +unsafe_op_in_unsafe_fn = "allow" diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..2e7f0d4 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1 @@ +#![no_std] \ No newline at end of file