| 1 | [package] |
| 2 | name = "rcal" |
| 3 | version = "0.3.1" |
| 4 | edition = "2024" |
| 5 | authors = ["Matthew Forrester Wolffe"] |
| 6 | description = "A responsive terminal calendar with local events, reminders, and provider sync" |
| 7 | license = "GPL-3.0-only" |
| 8 | repository = "https://github.com/tenseleyFlow/rcal" |
| 9 | readme = "README.md" |
| 10 | keywords = ["calendar", "tui", "terminal", "microsoft-graph", "google-calendar"] |
| 11 | categories = ["command-line-utilities", "date-and-time"] |
| 12 | |
| 13 | [dependencies] |
| 14 | crossterm = "0.29.0" |
| 15 | directories = "6.0.0" |
| 16 | fs2 = "0.4.3" |
| 17 | keyring = { version = "3", features = ["apple-native", "windows-native", "linux-native"] } |
| 18 | notify-rust = "4" |
| 19 | ratatui = "0.30.0" |
| 20 | reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "rustls-tls"] } |
| 21 | serde = { version = "1.0.228", features = ["derive"] } |
| 22 | serde_json = "1.0.145" |
| 23 | sha2 = "0.10" |
| 24 | time = { version = "0.3.47", features = ["local-offset", "parsing"] } |
| 25 | toml = "0.9.8" |