git.lucas.co / cce-calendar
calendar
git clone https://git.lucas.co/cce-calendar.git

Cargo.toml (929B)

 1 [package]
 2 name = "cce-calendar"
 3 version = "0.1.0"
 4 edition = "2021"
 5 
 6 [dependencies]
 7 cce-ui = { git = "https://github.com/lsgalante/cce-ui.git", rev = "f3c970be244ad54121021a8223986ba553e09838" }
 8 calloop = "0.13.0"
 9 wayland-client = { version = "0.31", features = ["system"] }
10 chrono = "0.4"
11 kdl = "4.6"
12 serde = { version = "1", features = ["derive"] }
13 serde_json = "1"
14 log = "0.4"
15 env_logger = "0.11"
16 # cce-calendar-sync only: CalDAV against iCloud, credentials from the same
17 # keyring service cce-mail uses.
18 reqwest = { version = "0.12", features = ["blocking", "json"] }
19 roxmltree = "0.20"
20 chrono-tz = "0.10"
21 keyring = { version = "3", features = ["sync-secret-service"] }
22 
23 # The month-view app; src/bin/sync.rs adds the cce-calendar-sync helper,
24 # which ccebuild discovers via cargo metadata like any other [[bin]].
25 [[bin]]
26 name = "cce-calendar"
27 path = "src/main.rs"
28 
29 [[bin]]
30 name = "cce-calendar-sync"
31 path = "src/bin/sync.rs"