compio-send-wrapper 0.7.0

This Rust library implements a wrapper type called SendWrapper which allows you to move around non-Send types between threads, as long as you access the contained value only from within the original thread. You also have to make sure that the wrapper is dropped from within the original thread. If any of these constraints is violated, a panic occurs.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "compio-send-wrapper"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
This Rust library implements a wrapper type called SendWrapper which allows you to move around non-Send types
between threads, as long as you access the contained value only from within the original thread. You also have to
make sure that the wrapper is dropped from within the original thread. If any of these constraints is violated,
a panic occurs."""
documentation = "https://docs.rs/compio-send-wrapper"
readme = "README.md"
keywords = [
    "send",
    "wrapper",
    "thread_local",
]
categories = ["rust-patterns"]
license = "MIT/Apache-2.0"
repository = "https://github.com/compio-rs/send_wrapper"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
current_thread_id = []
futures = ["futures-core"]
nightly = ["current_thread_id"]

[lib]
name = "compio_send_wrapper"
path = "src/lib.rs"

[dependencies.futures-core]
version = "0.3"
optional = true

[dev-dependencies.futures-executor]
version = "0.3"

[dev-dependencies.futures-util]
version = "0.3"