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.lock":"89b818af295bef6fa978dd025a00ff4361a1250f2d3a93414602c72a9d59c73c","Cargo.toml":"407e1327816505ef13bd3302de5dce2c9e9391c30f47d9b65c25abbe5c86d561","LICENSE":"b68ad1a3367b825447089e1f8d6829b97f47a89eb78d2f4ebaef4672f5606186","README.md":"0f4a8b503e1f90b594840f55ffb38d33e8fa5b52184f4b72033248ee8a2232b8","src/lib.rs":"4cce17b0e9124ffa6c2c25f44e4a004ab1821626c9830ae239f114d6bf5aaa2b"},"package":"2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"}

5
vendor/data-encoding/Cargo.lock generated vendored Normal file
View File

@@ -0,0 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "data-encoding"
version = "2.9.0"

68
vendor/data-encoding/Cargo.toml vendored Normal file
View File

@@ -0,0 +1,68 @@
# 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 = "2018"
rust-version = "1.48"
name = "data-encoding"
version = "2.9.0"
authors = ["Julien Cretin <git@ia0.eu>"]
build = false
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/lib.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient and customizable data-encoding functions like base64, base32, and hex"
documentation = "https://docs.rs/data-encoding"
readme = "README.md"
keywords = [
"no_std",
"base64",
"base32",
"hex",
]
categories = [
"encoding",
"no-std",
]
license = "MIT"
repository = "https://github.com/ia0/data-encoding"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg=docsrs"]
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "data_encoding"
path = "src/lib.rs"
[lints.clippy]
undocumented-unsafe-blocks = "warn"
[lints.rust]
elided-lifetimes-in-paths = "warn"
let-underscore-drop = "warn"
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unsafe-op-in-unsafe-fn = "warn"
unused-results = "warn"

22
vendor/data-encoding/LICENSE vendored Normal file
View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2015-2020 Julien Cretin
Copyright (c) 2017-2020 Google Inc.
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.

37
vendor/data-encoding/README.md vendored Normal file
View File

@@ -0,0 +1,37 @@
[![CI Status][ci_badge]][ci]
[![Coverage Status][coveralls_badge]][coveralls]
This library provides the following common encodings:
| Name | Description |
|--------------------------|--------------------------------------------------------|
| `HEXLOWER` | lowercase hexadecimal |
| `HEXLOWER_PERMISSIVE` | lowercase hexadecimal (case-insensitive decoding) |
| `HEXUPPER` | uppercase hexadecimal |
| `HEXUPPER_PERMISSIVE` | uppercase hexadecimal (case-insensitive decoding) |
| `BASE32` | RFC4648 base32 |
| `BASE32_NOPAD` | RFC4648 base32 (no padding) |
| `BASE32_NOPAD_NOCASE` | RFC4648 base32 (no padding, case-insensitive decoding) |
| `BASE32_NOPAD_VISUAL` | RFC4648 base32 (no padding, visual-approx. decoding) |
| `BASE32HEX` | RFC4648 base32hex |
| `BASE32HEX_NOPAD` | RFC4648 base32hex (no padding) |
| `BASE32_DNSSEC` | RFC5155 base32 |
| `BASE32_DNSCURVE` | DNSCurve base32 |
| `BASE64` | RFC4648 base64 |
| `BASE64_NOPAD` | RFC4648 base64 (no padding) |
| `BASE64_MIME` | RFC2045-like base64 |
| `BASE64_MIME_PERMISSIVE` | RFC2045-like base64 (ignoring trailing bits) |
| `BASE64URL` | RFC4648 base64url |
| `BASE64URL_NOPAD` | RFC4648 base64url (no padding) |
It also provides the possibility to define custom little-endian ASCII
base-conversion encodings for bases of size 2, 4, 8, 16, 32, and 64 (for which
all above use-cases are particular instances).
See the [documentation] for more details.
[ci]: https://github.com/ia0/data-encoding/actions/workflows/ci.yml
[ci_badge]: https://github.com/ia0/data-encoding/actions/workflows/ci.yml/badge.svg
[coveralls]: https://coveralls.io/github/ia0/data-encoding?branch=main
[coveralls_badge]: https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=main
[documentation]: https://docs.rs/data-encoding

2697
vendor/data-encoding/src/lib.rs vendored Normal file

File diff suppressed because it is too large Load Diff