aboutsummaryrefslogtreecommitdiffhomepage
path: root/tinyufo
diff options
context:
space:
mode:
authorKevin Guthrie <[email protected]>2024-04-05 18:06:30 -0400
committerYuchen Wu <[email protected]>2024-04-22 08:48:19 -0700
commita23d4d8ef1602d4042c223bc8e33067e57fb7746 (patch)
tree8d280ba7244f4d592434e5b5ac24cdd19d6fc82a /tinyufo
parent6e6b4f6705665221a0a6c0a7a2a3b6ee6dee6384 (diff)
downloadpingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.tar.gz
pingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.zip
Fix #186 Expose Bucket to prevent compile error in Rust <= 1.73
Diffstat (limited to 'tinyufo')
-rw-r--r--tinyufo/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyufo/src/lib.rs b/tinyufo/src/lib.rs
index 015afe0..248f729 100644
--- a/tinyufo/src/lib.rs
+++ b/tinyufo/src/lib.rs
@@ -121,7 +121,7 @@ pub struct KV<T> {
}
// the data and its metadata
-struct Bucket<T> {
+pub struct Bucket<T> {
uses: Uses,
queue: Location,
weight: Weight,