envx-secure 0.1.3

A CLI for .env file management: diff, audit, and encrypt
Documentation
1
2
3
4
5
6
7
8
9
//! Implementations of each `envx` subcommand.
//!
//! Each module exposes a `run` (or `run_*`) function that is called from
//! `main` after argument parsing.  All subcommands share the [`crate::parser`]
//! module for `.env` file parsing.

pub mod audit;
pub mod diff;
pub mod encrypt;