drop-tracker 0.2.0

Crate to check when a variable gets dropped. Useful for testing wrappers and containers that use unsafe memory management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "drop-tracker"
version = "0.2.0"
edition = "2024"
rust-version = "1.85.0"
authors = ["Andrea Corbellini <corbellini.andrea@gmail.com>"]
license = "BSD-3-Clause"

description = "Crate to check when a variable gets dropped. Useful for testing wrappers and containers that use unsafe memory management."
repository = "https://github.com/andreacorbellini/rust-drop-tracker"

keywords = ["testing", "drop"]
categories = ["development-tools::testing", "rust-patterns"]

[dependencies]