linera_views/backends/
mod.rs

1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4pub mod journaling;
5
6#[cfg(with_metrics)]
7pub mod metering;
8
9pub mod value_splitting;
10
11pub mod memory;
12
13pub mod lru_caching;
14
15pub mod dual;
16
17#[cfg(with_scylladb)]
18pub mod scylla_db;
19
20#[cfg(with_rocksdb)]
21pub mod rocks_db;
22
23#[cfg(with_dynamodb)]
24pub mod dynamo_db;
25
26#[cfg(with_indexeddb)]
27pub mod indexed_db;