feat: add bundle provenance store

This commit is contained in:
2026-08-24 11:15:12 -06:00
parent b21699b749
commit bfcc762ec9
4 changed files with 914 additions and 7 deletions
+3
View File
@@ -1,6 +1,8 @@
mod agent;
mod app_config;
mod app_state;
#[allow(dead_code)]
mod bundles;
mod input;
mod install_remote;
pub(crate) mod instructions;
@@ -155,6 +157,7 @@ const SBX_KIT_DIR_NAME: &str = "sbx-kit";
const SBX_KIT_HASH_FILE: &str = "kit.sha256";
const SBX_MIXIN_FILE_NAME: &str = "sbx-mixin.yaml";
pub(crate) const VAULT_DATA_FILE_NAME: &str = "vault.yml";
const INSTALLED_BUNDLES_FILE_NAME: &str = "installed-bundles.yaml";
const SBX_MIXIN_KITS_DIR_NAME: &str = "sbx-mixin-kits";
const GIT_DIR_NAME: &str = ".git";
const GITIGNORE_FILE_NAME: &str = ".gitignore";