mirror of
https://github.com/oconnor663/bao
synced 2025-04-19 13:17:56 +02:00
Changes since 0.12.1: - `Decoder::into_inner` now returns both the primary reader and the optional outboard reader. - The second type param of `Decoder` (the optional outboard reader) now defaults to equal the first. - Updated dependencies and replaced some outdated ones.
24 lines
538 B
INI
24 lines
538 B
INI
[package]
|
|
name = "bao"
|
|
version = "0.13.0"
|
|
authors = ["Jack O'Connor"]
|
|
description = "an implementation of BLAKE3 verified streaming"
|
|
license = "CC0-1.0 OR Apache-2.0"
|
|
repository = "https://github.com/oconnor663/bao"
|
|
documentation = "https://docs.rs/bao"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7.1"
|
|
blake3 = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9.0"
|
|
serde = { version = "1.0.97", features = ["derive"] }
|
|
serde_json = "1.0.40"
|
|
tempfile = "3.1.0"
|
|
rand_chacha = "0.9.0"
|
|
rand_xorshift = "0.4.0"
|
|
page_size = "0.6"
|