keyflux 0.1.14

A CLI tool and library for synchronizing environment secrets across multiple platforms including local files, GitHub Secrets, Supabase Vault, and Vercel Secrets. It facilitates secure management and automation of sensitive data.
Documentation
mod upsert;
mod select;
mod delete;

use serde::Serialize;
pub use upsert::VercelEnvironmentUpsert;

// pub use upsert::VercelEnvironmentCheck;


pub static VERCEL_ACCESS_TOKEN: &str = "VERCEL_ACCESS_TOKEN";

#[derive(Serialize, Debug)]
#[serde(rename_all = "lowercase")]
pub enum VariableType {
    System,
    Secret,
    Encrypted,
    Plain,
    Sensitive,
}