1
0
mirror of https://github.com/oconnor663/bao synced 2025-04-29 14:57:55 +02:00
bao/Cargo.toml
Jack O'Connor 19763d70a5 version 0.13.1
Changes since 0.13.0:
- All uses of the deprecated `blake3::guts` module have been replaced
  with the (new, documented, stable) `blake3::hazmat` module. This is an
  internal change with no impact on callers.

There are no caller-visible changes in this release. The next major
release, probably v1.0, will include some sort of support for "chunk
groups" to reduce parent node overhead, but that feature is still TODO.
2025-04-07 14:51:09 -07:00

24 lines
538 B
INI

[package]
name = "bao"
version = "0.13.1"
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.8.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"