1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#[macro_use]
pub mod macros;

pub mod api;
pub mod block_store;
pub mod clipboard;
pub mod memguard;
pub mod otp;
pub mod secrets_store;
pub mod service;

#[allow(dead_code)]
#[allow(
  clippy::wrong_self_convention,
  clippy::redundant_closure,
  clippy::redundant_field_names,
  clippy::match_single_binding
)]
mod secrets_store_capnp;

#[allow(dead_code)]
#[allow(
  clippy::wrong_self_convention,
  clippy::redundant_closure,
  clippy::redundant_field_names,
  clippy::match_single_binding
)]
pub mod api_capnp;