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

View File

@@ -0,0 +1 @@
{"files":{"Cargo.toml":"86ad0165e3fa2ad3ef17783be36336461747077416ee2279cc47a85cbfe9b786","LICENSE-MIT":"0f96a83840e146e43c0ec96a22ec1f392e0680e6c1226e6f3ba87e0740af850f","README.md":"d1ef59814b8c766c156a2b43d9bdfc9e1e65727360b54576a2041c96645383ac","UNLICENSE":"7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c","src/io.rs":"09963cd6169270907475bb0fe8615718a1287aa3a8c0b653a77ba5b4acae0281","src/lib.rs":"bf73dc14b78c0e331d13e58872baf93d1f7fb11bbd750e95bd5c4419867834ed"},"package":"8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"}

57
vendor/byteorder-lite/Cargo.toml vendored Normal file
View File

@@ -0,0 +1,57 @@
# 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 = "2021"
rust-version = "1.60"
name = "byteorder-lite"
version = "0.1.0"
include = [
"README.md",
"LICENSE-MIT",
"UNLICENSE",
"src/*",
]
description = "Library for reading/writing numbers in big-endian and little-endian."
homepage = "https://github.com/image-rs/byteorder-lite"
documentation = "https://docs.rs/byteorder-lite"
readme = "README.md"
keywords = [
"byte",
"endian",
"big-endian",
"little-endian",
"binary",
]
categories = [
"encoding",
"parsing",
"no-std",
]
license = "Unlicense OR MIT"
repository = "https://github.com/image-rs/byteorder-lite"
[profile.bench]
opt-level = 3
[lib]
bench = false
[dev-dependencies.quickcheck]
version = "0.9.2"
default-features = false
[dev-dependencies.rand]
version = "0.7"
[features]
default = ["std"]
std = []

21
vendor/byteorder-lite/LICENSE-MIT vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2015 Andrew Gallant
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

12
vendor/byteorder-lite/README.md vendored Normal file
View File

@@ -0,0 +1,12 @@
# byteorder-lite
[![crates.io](https://img.shields.io/crates/v/byteorder-lite.svg)](https://crates.io/crates/byteorder-lite)
[![Documentation](https://docs.rs/byteorder-lite/badge.svg)](https://docs.rs/byteorder-lite)
[![Build Status](https://github.com/image-rs/byteorder-lite/workflows/ci/badge.svg)](https://github.com/image-rs/byteorder-lite/actions)
This crate is a fork of the `byteorder` crate which sets
`#![forbid(unsafe_code)]`. It includes all traits and most methods from the
original crate, but the `ReadBytesExt::read_*_into` family of methods had to be
removed because they currently cannot be implemented without unsafe code.
`byteorder-lite` is not affiliated with the main `byteorder` crate.

24
vendor/byteorder-lite/UNLICENSE vendored Normal file
View File

@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>

1066
vendor/byteorder-lite/src/io.rs vendored Normal file

File diff suppressed because it is too large Load Diff

3983
vendor/byteorder-lite/src/lib.rs vendored Normal file

File diff suppressed because it is too large Load Diff