tc-secrets 0.2.2

CLI tool to synchronize .env secrets with AWS Secrets Manager with encryption
1
2
3
4
5
6
7
8
9
10
11
mod aws;
mod config;
mod crypto;
mod diff;
mod error;

pub use aws::{AWS, AWSSecret};
pub use config::EnvFile;
pub use crypto::Encryption;
pub use diff::display_diff;
pub use error::CliError;