diff options
author | Kevin Guthrie <[email protected]> | 2024-04-05 18:06:30 -0400 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-04-22 08:48:19 -0700 |
commit | a23d4d8ef1602d4042c223bc8e33067e57fb7746 (patch) | |
tree | 8d280ba7244f4d592434e5b5ac24cdd19d6fc82a | |
parent | 6e6b4f6705665221a0a6c0a7a2a3b6ee6dee6384 (diff) | |
download | pingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.tar.gz pingora-a23d4d8ef1602d4042c223bc8e33067e57fb7746.zip |
Fix #186 Expose Bucket to prevent compile error in Rust <= 1.73
-rw-r--r-- | .bleep | 2 | ||||
-rw-r--r-- | tinyufo/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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, |