Trying very hard not to miss calendar events
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename project

+5 -5
+2 -2
Cargo.toml
··· 1 1 [package] 2 - name = "list_events_rs" 2 + name = "eds-cal-rs" 3 3 version = "0.1.0" 4 4 edition = "2021" 5 5 6 6 [[bin]] 7 - name = "list_events" 7 + name = "eds-cal-cli" 8 8 path = "src/main.rs" 9 9 10 10 [dependencies]
+3 -3
src/main.rs
··· 4 4 use clap::{Parser, Subcommand}; 5 5 6 6 #[derive(Parser)] 7 - #[command(name = "list_events")] 8 - #[command(about = "Evolution Data Server test program", long_about = None)] 7 + #[command(name = "eds-cli")] 8 + #[command(about = "Evolution Data Server Calendar CLI tool", long_about = None)] 9 9 #[command(version)] 10 10 struct Cli { 11 11 #[command(subcommand)] ··· 42 42 43 43 fn print_version() { 44 44 let version = eds::GLibVersion::get(); 45 - println!("Evolution Data Server test program"); 45 + println!("Evolution Data Server Calendar"); 46 46 println!("Library version info:"); 47 47 println!( 48 48 " GLib version: {}.{}.{}",