librustzcash/zcash_history
Daira-Emma Hopwood aa77be8830 Update dependencies (including to avoid a vulnerability warning for atty), bump MSRV to 1.66,
and fix new clippy lints for MSRV 1.66.

* tonic 0.10 -> 0.11
* tonic-build 0.10 -> 0.11
* cargo update
* cargo update -p home@0.5.9 --precise 0.5.5
* cargo update -p prost-build@0.12.4 --precise 0.12.3
* cargo update -p prost-types@0.12.4 --precise 0.12.3
* cargo update -p prost@0.12.4 --precise 0.12.3
* cargo update -p prost-derive@0.12.5 --precise 0.12.3
* cargo update -p half@2.4.1 --precise 2.2.1

(The precise updates avoid a further MSRV bump to 1.70.)

Remaining duplicates are currently unavoidable.

Signed-off-by: Daira-Emma Hopwood <daira@jacaranda.org>
2024-05-20 13:35:27 +01:00
..
examples Fix clippy complaints. 2022-12-09 09:32:34 -07:00
src chore: remove repetitive words 2024-05-04 20:54:15 +08:00
.gitignore Add 'zcash_history/' from commit 'e2c131fdc308265adcab774e54d4d5804c23b368' 2020-03-03 17:51:19 -07:00
CHANGELOG.md Update dependencies (including to avoid a vulnerability warning for atty), bump MSRV to 1.66, 2024-05-20 13:35:27 +01:00
COPYRIGHT Rename zcash_mmr to zcash_history. 2020-03-03 18:14:40 -07:00
Cargo.toml zcash_history 0.4.0 2024-03-01 15:10:11 +00:00
LICENSE-APACHE Add 'zcash_history/' from commit 'e2c131fdc308265adcab774e54d4d5804c23b368' 2020-03-03 17:51:19 -07:00
LICENSE-MIT Add 'zcash_history/' from commit 'e2c131fdc308265adcab774e54d4d5804c23b368' 2020-03-03 17:51:19 -07:00
README.md Rename zcash_mmr to zcash_history. 2020-03-03 18:14:40 -07:00

README.md

zcash_history

Special implementation of Merkle mountain ranges (MMR) for Zcash!

Build Status

The main design goals of this MMR implementation are

  • Allow zero-cache and avoid db callbacks. As it is implemented, calling side must just smartly pre-load MMR nodes from the database (about log2(tree length) for append, twice as much for deletion).

  • Reuse as much logic between rust and c++ clients and place it here and librustzcash.

  • Close to zero memory consumption.

License

zcash_history is distributed under the terms of both the MIT license and the Apache License (Version 2.0), at your choice.

See LICENSE-APACHE, and LICENSE-MIT for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in zcash_history by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.