73bd8015c3
I'd like to extend the regex list here very soon, but start off by automatically filtering out secrets. Do not store them in history! I've included regex for: 1. AWS key id 2. Github pat (old and new) 3. Slack oauth tokens (bot, user) 4. Slack webhooks 5. Stripe live/test keys Will need updating after #806
19 lines
294 B
Rust
19 lines
294 B
Rust
#![forbid(unsafe_code)]
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
#[cfg(feature = "sync")]
|
|
pub mod api_client;
|
|
#[cfg(feature = "sync")]
|
|
pub mod sync;
|
|
|
|
pub mod database;
|
|
pub mod encryption;
|
|
pub mod history;
|
|
pub mod import;
|
|
pub mod kv;
|
|
pub mod ordering;
|
|
pub mod record;
|
|
pub mod secrets;
|
|
pub mod settings;
|