Vendor dependencies

This commit is contained in:
2026-08-01 16:11:49 +03:00
parent 7f139a0241
commit 6b5e7f0f8b
29706 changed files with 9575646 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
[package]
name = "stable_deref_trait"
version = "1.2.1"
authors = ["Robert Grosse <n210241048576@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/storyyeller/stable_deref_trait"
documentation = "https://docs.rs/stable_deref_trait/1.2.1/stable_deref_trait"
categories = ["memory-management", "no-std"]
description = """
An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.
"""
[features]
default = ["std"]
std = ["alloc"]
alloc = []