summaryrefslogtreecommitdiffstats
path: root/vendor/gix-odb/src/store_impls/dynamic/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-odb/src/store_impls/dynamic/mod.rs')
-rw-r--r--vendor/gix-odb/src/store_impls/dynamic/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/gix-odb/src/store_impls/dynamic/mod.rs b/vendor/gix-odb/src/store_impls/dynamic/mod.rs
index e992fada6..35d4f7ca6 100644
--- a/vendor/gix-odb/src/store_impls/dynamic/mod.rs
+++ b/vendor/gix-odb/src/store_impls/dynamic/mod.rs
@@ -1,4 +1,5 @@
//! The standard object store which should fit all needs.
+use gix_features::zlib;
use std::{cell::RefCell, ops::Deref};
use crate::Store;
@@ -24,6 +25,7 @@ where
pub(crate) token: Option<handle::Mode>,
snapshot: RefCell<load_index::Snapshot>,
+ inflate: RefCell<zlib::Inflate>,
packed_object_count: RefCell<Option<u64>>,
}