2021-02-18 12:02:04 +01:00
|
|
|
[package]
|
2021-04-28 23:46:11 +02:00
|
|
|
name = "kitchen-fridge"
|
2021-11-24 00:22:30 +01:00
|
|
|
version = "0.3.0"
|
2021-04-28 23:46:11 +02:00
|
|
|
authors = ["daladim"]
|
2021-02-18 12:02:04 +01:00
|
|
|
edition = "2018"
|
2021-09-29 23:47:00 +02:00
|
|
|
description = "A CalDAV (ical file management over WebDAV) library"
|
|
|
|
repository = "https://github.com/daladim/kitchen-fridge"
|
2021-11-24 00:22:30 +01:00
|
|
|
documentation = "https://docs.rs/kitchen-fridge"
|
2021-09-29 23:47:00 +02:00
|
|
|
license = "MIT"
|
2021-11-24 00:22:30 +01:00
|
|
|
readme = "README.md"
|
2021-11-15 22:32:44 +01:00
|
|
|
keywords = ["CalDAV", "client", "WebDAV", "todo", "iCloud"]
|
2021-09-29 23:47:00 +02:00
|
|
|
categories = ["network-programming", "web-programming::http-client"]
|
2021-02-18 12:02:04 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-03-22 23:42:41 +01:00
|
|
|
[features]
|
2021-03-28 01:22:24 +01:00
|
|
|
integration_tests = ["local_calendar_mocks_remote_calendars"]
|
|
|
|
local_calendar_mocks_remote_calendars = []
|
2021-03-22 23:42:41 +01:00
|
|
|
|
2021-02-18 12:02:04 +01:00
|
|
|
[dependencies]
|
2021-11-24 00:22:53 +01:00
|
|
|
env_logger = "0.9"
|
2021-02-21 00:14:55 +01:00
|
|
|
log = "0.4"
|
2021-02-24 23:49:20 +01:00
|
|
|
tokio = { version = "1.2", features = ["macros", "rt", "rt-multi-thread"]}
|
2021-02-20 00:10:05 +01:00
|
|
|
reqwest = "0.11"
|
|
|
|
minidom = "0.13"
|
2021-02-24 17:38:08 +01:00
|
|
|
url = { version = "2.2", features = ["serde"] }
|
2021-02-21 00:16:40 +01:00
|
|
|
bitflags = "1.2"
|
2021-02-24 17:38:08 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-02-25 00:47:39 +01:00
|
|
|
async-trait = "0.1"
|
2021-02-25 00:50:49 +01:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2021-03-21 00:11:35 +01:00
|
|
|
sanitize-filename = "0.3"
|
2021-11-23 23:02:40 +01:00
|
|
|
ical = { version = "0.6", features = ["serde-derive"], git = "https://github.com/Peltoche/ical-rs.git", rev = "c49506998dfacd8d809d106a7beb0c56c9e528e8" }
|
2021-04-12 09:23:37 +02:00
|
|
|
ics = "0.5"
|
2021-04-14 21:19:32 +02:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-07-08 15:57:45 +02:00
|
|
|
csscolorparser = { version = "0.5", features = ["serde"] }
|
2021-11-10 22:47:33 +01:00
|
|
|
once_cell = "1.8"
|