]> git.proxmox.com Git - proxmox.git/blame - proxmox-tfa/src/lib.rs
tfa: make totp a feature and mark all optional deps as optional
[proxmox.git] / proxmox-tfa / src / lib.rs
CommitLineData
8cbf9cb7
WB
1#[cfg(feature = "u2f")]
2pub mod u2f;
3
6940908a 4#[cfg(feature = "totp")]
8cbf9cb7 5pub mod totp;
313d0a6b
WB
6
7#[cfg(feature = "api")]
8pub mod api;
0d942e81
WB
9
10#[cfg(feature = "types")]
11mod types;
12#[cfg(feature = "types")]
13pub use types::{TfaInfo, TfaType, TfaUpdateInfo, TypedTfaInfo};