Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

17
vendor/disqualified/README.md vendored Normal file
View File

@@ -0,0 +1,17 @@
<div class="rustdoc-hidden">
# `disqualified`
</div>
![License](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)
[![Crates.io](https://img.shields.io/crates/v/disqualified.svg)](https://crates.io/crates/disqualified)
[![Downloads](https://img.shields.io/crates/d/disqualified.svg)](https://crates.io/crates/disqualified)
[![Docs](https://docs.rs/disqualified/badge.svg)](https://docs.rs/disqualified/latest/disqualified/)
Lazily shortens a type name to remove all module paths. The short name of a type is its full name as returned by [`core::any::type_name`], but with the prefix of all paths removed. For example, the short name of `alloc::vec::Vec<core::option::Option<u32>>` would be `Vec<Option<u32>>`. Shortening is performed lazily without allocation.
## Contributing
This crate is maintained by the Bevy organization, and is intended to be tiny, stable, zero-dependency, and broadly useful.
[Issues](https://github.com/bevyengine/disqualified/issues) and [pull requests](https://github.com/bevyengine/disqualified/pulls) are genuinely welcome!