Skip to content

Commit

Permalink
[Turbopack] fix lmdb feature (#73728)
Browse files Browse the repository at this point in the history
### What?

Fixes the lmdb feature and makes it compile fine
  • Loading branch information
sokra authored Dec 10, 2024
1 parent b730b9c commit 74671c1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions turbopack/crates/turbo-tasks-backend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ use crate::database::{

#[cfg(feature = "lmdb")]
pub type LmdbBackingStorage = KeyValueDatabaseBackingStorage<
ReadTransactionCache<
StartupCacheLayer<FreshDbOptimization<crate::database::lmdb::LmbdKeyValueDatabase>>,
database::read_transaction_cache::ReadTransactionCache<
database::startup_cache::StartupCacheLayer<
database::fresh_db_optimization::FreshDbOptimization<
crate::database::lmdb::LmbdKeyValueDatabase,
>,
>,
>,
>;

Expand Down

0 comments on commit 74671c1

Please sign in to comment.