From eaa9de1bca595859f8009b7d89eac2663d8f5587 Mon Sep 17 00:00:00 2001 From: LanguageUtilities <> Date: Tue, 3 Feb 2026 09:06:04 +0000 Subject: [PATCH] Initial commit --- .cargo/config.toml | 2 ++ .gitignore | 3 +++ Cargo.toml | 7 +++++++ src/lib.rs | 1 + 4 files changed, 13 insertions(+) create mode 100644 .cargo/config.toml create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/lib.rs 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..29bcbbc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "number-utilities-0" +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