mirror of
https://github.com/oconnor663/bao
synced 2025-02-22 23:31:05 +01: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.
34 lines
675 B
INI
34 lines
675 B
INI
[package]
|
|
name = "bao_bin"
|
|
version = "0.13.0"
|
|
authors = ["Jack O'Connor"]
|
|
description = "the command line utility that's part of the bao crate"
|
|
license = "CC0-1.0 OR Apache-2.0"
|
|
repository = "https://github.com/oconnor663/bao"
|
|
readme = "../README.md"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "bao"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["rayon"]
|
|
neon = ["blake3/neon"]
|
|
rayon = ["blake3/rayon"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
assert_cmd = "2.0.16"
|
|
bao = { path = "..", version = "0.13" }
|
|
blake3 = "1.0.0"
|
|
docopt = "1.1.0"
|
|
hex = "0.4.0"
|
|
memmap2 = "0.9.5"
|
|
serde = { version = "1.0.97", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
duct = "0.13.0"
|
|
rand = "0.9"
|
|
tempfile = "3.1.0"
|