2021-02-18 12:02:04 +01:00
|
|
|
[package]
|
2021-04-28 23:46:11 +02:00
|
|
|
name = "kitchen-fridge"
|
2021-02-18 12:02:04 +01:00
|
|
|
version = "0.1.0"
|
2021-04-28 23:46:11 +02:00
|
|
|
authors = ["daladim"]
|
2021-02-18 12:02:04 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# 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-02-21 00:14:55 +01:00
|
|
|
env_logger = "0.8"
|
|
|
|
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-03-29 09:31:22 +02:00
|
|
|
ical = "0.7"
|
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"] }
|