[package]
edition = "2024"
name = "const-destructure"
version = "0.1.3"
authors = ["Mick van Gelderen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Destructuring in const contexts on stable Rust."
readme = "README.md"
keywords = [
"const",
"destructuring",
"struct",
"tuple",
"assignment",
]
categories = [
"rust-patterns",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mickvangelderen/const-destructure"
[lib]
name = "const_destructure"
path = "src/lib.rs"
[[test]]
name = "compile_fail_tests"
path = "tests/compile_fail_tests.rs"
[[test]]
name = "pass"
path = "tests/pass.rs"
[dependencies]
[dev-dependencies.trybuild]
version = "1.0.111"