Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/tinydocs-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tinybus-module = { version = "0.1.0", path = "../../vendor/tinybus/crates/tinybu
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
# Bus frames are JSON, where a byte array costs ~3.5 bytes per byte. Chunks are
# base64 (1.34x) so a 4 MiB chunk fits a frame with room to spare.
base64 = "0.22"
base64 = "0.23"
# Chunked transfer verifies each assembled blob against a caller-declared digest
# before it becomes readable, so a truncated upload cannot be consumed as whole.
sha2 = "0.10"
Expand All @@ -41,7 +41,7 @@ workspace = true

[dev-dependencies]
# The loader E2E test speaks the base64 transfer surface the same way a host does.
base64 = "0.22"
base64 = "0.23"
# `GeneratePptx` takes a deck whose images name staged blobs; the test builds that
# document directly rather than depending on the module's own wire types, so a
# rename here would be caught as a contract change.
Expand Down