matrix-authentication-service/.gear/predownloaded-development/vendor/self_cell/Cargo.toml.orig
2026-03-07 01:41:31 +03:00

29 lines
936 B
TOML

[package]
name = "self_cell"
version = "1.2.0"
authors = ["Lukas Bergdoll <lukas.bergdoll@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
description = "Safe-to-use proc-macro-free self-referential structs in stable Rust."
readme = "README.md"
documentation = "https://docs.rs/self_cell"
repository = "https://github.com/Voultapher/self_cell"
keywords = ["lifetime", "borrowing", "self", "reference", "intrusive"]
categories = ["rust-patterns", "memory-management"]
include = ["src/*.rs", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
rustversion = { version = ">=1", optional = true }
[dev-dependencies]
once_cell = "=1.1.0"
[features]
# This optional feature lowers the minimum rustc version from 1.51 to 1.36.
# However this requires polyfilling std library functionality for older rustc
# with technically UB versions. Testing does not show older rustc versions
# (ab)using this. Use at
old_rust = ["rustversion"]