11== Zero-Allocation Hashing
22Chronicle Software
3- :css-signature: demo
4- :toc: macro
5- :toclevels: 2
6- :icons: font
73
84image:https://maven-badges.herokuapp.com/maven-central/net.openhft/zero-allocation-hashing/badge.svg[caption="",link=https://maven-badges.herokuapp.com/maven-central/net.openhft/zero-allocation-hashing]
95image:https://javadoc.io/badge2/net.openhft/zero-allocation-hashing/javadoc.svg[link="https://www.javadoc.io/doc/net.openhft/zero-allocation-hashing/latest/index.html"]
@@ -16,9 +12,8 @@ toc::[]
1612
1713== About
1814
19-
2015This project provides a Java API for hashing any sequence of bytes in Java, including all kinds of
21- primitive arrays, buffers, `CharSequence`s and more.
16+ primitive arrays, buffers, `CharSequence` and more.
2217
2318Written for Java 7+ under Apache 2.0 license.
2419
@@ -97,15 +92,15 @@ To sum up,
9792 and hash the resulting byte sequence on the way without dumping it to memory.
9893
9994==== Java Doc
100- See http://javadoc.io/doc/net.openhft/zero-allocation-hashing/0.15
95+ See http://javadoc.io/doc/net.openhft/zero-allocation-hashing/latest
10196
10297== Quick start
10398
10499Gradle:
105100[source, groovy]
106101----
107102dependencies {
108- implementation 'net.openhft:zero-allocation-hashing:0.15 '
103+ implementation 'net.openhft:zero-allocation-hashing:0.16 '
109104}
110105----
111106
@@ -115,7 +110,7 @@ Or Maven:
115110<dependency>
116111 <groupId>net.openhft</groupId>
117112 <artifactId>zero-allocation-hashing</artifactId>
118- <version>0.15 </version>
113+ <version>0.16 </version>
119114</dependency>
120115----
121116
0 commit comments