Skip to main content

huskarl_google_cloud/
lib.rs

1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![deny(rustdoc::broken_intra_doc_links)]
4#![deny(clippy::unwrap_used)]
5#![deny(clippy::expect_used)]
6#![deny(clippy::panic)]
7#![warn(clippy::pedantic)]
8
9//! Google Cloud Platform crypto integrations.
10//!
11//! Implements `huskarl` traits for GCP services.
12
13#[cfg(feature = "kms")]
14pub mod kms;
15#[cfg(feature = "secretmanager")]
16pub mod secretmanager;