[package] name = "synops-calendar" version = "0.1.0" edition = "2024" [[bin]] name = "synops-calendar" path = "src/main.rs" [dependencies] clap = { version = "4", features = ["derive", "env"] } synops-common = { path = "../synops-common" } sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "json"] } uuid = { version = "1", features = ["v7", "serde"] } chrono = { version = "0.4", features = ["serde"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["full"] } tracing = "0.1" ical = "0.11"