From 3d8163ca2d9208c663d6dbac48105a96ac540306 Mon Sep 17 00:00:00 2001 From: Kevin Guthrie Date: Tue, 10 Sep 2024 09:45:54 -0400 Subject: [PATCH] Add crates.io/docs.rs badges to readme --- .bleep | 2 +- README.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.bleep b/.bleep index 794a8ca..285c673 100644 --- a/.bleep +++ b/.bleep @@ -1 +1 @@ -b1d4df2ff996ddd7226bf8795278e43d7618227e \ No newline at end of file +46cdb8138867aa29ff1fd9d672c1c4bdd63914f7 \ No newline at end of file diff --git a/README.md b/README.md index 305f9bb..8afcc33 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[![Crates.io](https://img.shields.io/crates/v/trie-hard.svg)](https://crates.io/crates/trie-hard) +[![Documentation](https://docs.rs/trie-hard/badge.svg)](https://docs.rs/trie-hard/) + # Don't just Trie, Trie Hard This crate is an implementation of the [trie](https://en.wikipedia.org/wiki/Trie) data structure that is optimized for reading from small maps where a large number of misses are expected. This is still a work in progress in the sense that as none of the other features you would expect to find in a trie (like prefix search), but it is used in production in Cloudflare's [Pingora](https://blog.cloudflare.com/pingora-open-source) to detect and remove specific headers from 30 million requests every second before they are proxied to their final destinations.