Update dependencies and add new features for improved functionality

- Updated Cargo.lock and Cargo.toml to include new dependencies
- Added new files for backup and watcher functionality in libmarlin
- Introduced integration tests and documentation updates
- Set workspace resolver to version 2 for better dependency resolution
This commit is contained in:
thePR0M3TH3AN
2025-05-19 18:14:42 -04:00
parent 6125acb4d1
commit 2f97bd8c3f
23 changed files with 2567 additions and 50 deletions

View File

@@ -9,6 +9,7 @@ pub mod remind;
pub mod annotate;
pub mod version;
pub mod event;
pub mod watch;
use clap::{Parser, Subcommand, ValueEnum};
use clap_complete::Shell;
@@ -123,6 +124,10 @@ pub enum Commands {
/// Calendar events & timelines
#[command(subcommand)]
Event(event::EventCmd),
/// Watch directories for changes
#[command(subcommand)]
Watch(watch::WatchCmd),
}
#[derive(Subcommand, Debug)]