From fc0495b6f85d12280f6e0a45c4fa7d2849d1214d Mon Sep 17 00:00:00 2001 From: Andrew Golovashevich Date: Mon, 19 Jan 2026 21:00:53 +0000 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ Cargo.toml | 8 ++++++++ src/lib.rs | 0 3 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/lib.rs 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..572e555 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "bitset-0" +edition = "2024" +version = "0.0.0" + +[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..e69de29