commit 5f186f7f7b6c32db04b6c8aa9fe52199f28fcec8 Author: Andrew Golovashevich Date: Mon Jan 19 17:20:56 2026 +0000 Initial commit 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..b79cd6b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "tagged-pointer-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