init: initial commit

This commit is contained in:
2025-07-21 19:39:06 +02:00
commit 6a32bfa594
8 changed files with 304 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "dst-clone"
version = "0.1.0"
edition = "2024"
[dependencies]
[features]
nightly = []
specialization = ["nightly"]
allocator_api = ["nightly"]
default = [
"nightly", # needed for `ptr_metadata`
"specialization",
]