From d6934c45b747c31367d5c2d142394199f55eabbc Mon Sep 17 00:00:00 2001 From: tison Date: Tue, 19 May 2026 06:43:08 +0800 Subject: [PATCH 1/2] chore: Add a link to datasketches-rust to README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57125686..2b994a57 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,12 @@ This is the core C++ component of the Apache DataSketches library. It contains This component is also a dependency of other library components that create adaptors for target systems, such as [PostgreSQL](https://github.com/apache/datasketches-postgresql). -Note that we have parallel core library components for Java, Python, and GO implementations of many of the same sketch algorithms: +Note that we have parallel core library components for C++, Python, GO, and Rust implementations of many of the same sketch algorithms: - [datasketches-java](https://github.com/apache/datasketches-java) - [datasketches-python](https://github.com/apache/datasketches-python) - [datasketches-go](https://github.com/apache/datasketches-go) +- [datasketches-rust](https://github.com/apache/datasketches-rust) Please visit the main [Apache DataSketches website](https://datasketches.apache.org) for more information. From bdf5ea25f992e0593c177fceb8ae2a4ae2a9ad56 Mon Sep 17 00:00:00 2001 From: tison Date: Tue, 19 May 2026 06:54:38 +0800 Subject: [PATCH 2/2] Correct parallel component language in README Updated the README to reflect Java as a parallel core library component instead of C++. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b994a57..d33f7caf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is the core C++ component of the Apache DataSketches library. It contains This component is also a dependency of other library components that create adaptors for target systems, such as [PostgreSQL](https://github.com/apache/datasketches-postgresql). -Note that we have parallel core library components for C++, Python, GO, and Rust implementations of many of the same sketch algorithms: +Note that we have parallel core library components for Java, Python, GO, and Rust implementations of many of the same sketch algorithms: - [datasketches-java](https://github.com/apache/datasketches-java) - [datasketches-python](https://github.com/apache/datasketches-python)