aboutsummaryrefslogtreecommitdiffhomepage
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
parent6e6b4f6705665221a0a6c0a7a2a3b6ee6dee6384 (diff)
downloadpingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.tar.gz
pingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.zip
Fix #186 Expose Bucket to prevent compile error in Rust <= 1.73
-rw-r--r--.bleep2
-rw-r--r--tinyufo/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/.bleep b/.bleep
index 3b4cb41..881055f 100644
--- a/.bleep
+++ b/.bleep
@@ -1 +1 @@
-e5fa2a58cacd97f90175b4084f3b3057466fd542 \ No newline at end of file
+5fa74f2bf1f95b283bbeb819687777d5592218ee \ No newline at end of file
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,