Files
shorebird-updater/patch/Cargo.toml
T
dependabot[bot] 954e685891 chore(deps): update sha2 requirement in /patch in the patch-deps group (#330)
Updates the requirements on [sha2](https://github.com/RustCrypto/hashes) to permit the latest version.

Updates `sha2` to 0.11.0
- [Commits](https://github.com/RustCrypto/hashes/compare/streebog-v0.11.0-pre.0...sha2-v0.11.0)

---
updated-dependencies:
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  dependency-group: patch-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Eric Seidel <eric@shorebird.dev>
2026-04-08 01:12:36 +00:00

27 lines
814 B
TOML

[package]
name = "patch"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Compression and decompression of patch files.
bidiff = "1.0.0"
# Pipe is a simple in-memory pipe implementation, there might be a std way too?
pipe = "0.4.0"
# comde is a wrapper around several compression libraries.
# We only use zstd and could depend on it directly instead.
comde = { version = "0.3.0", default-features = false, features = [
"zstandard",
] }
# Only used by string_patch tool:
# I don't know how to make them per-target dependencies.
# For computing hashes of patch files for validation.
# Only used by the string_patch tool for now.
sha2 = "0.11.0"
# For encoding hashes for Patch network responses.
hex = "0.4.3"