kitchen-freezer/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

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"
2021-09-29 23:47:00 +02:00
description = "A CalDAV (ical file management over WebDAV) library"
repository = "https://github.com/daladim/kitchen-fridge"
license = "MIT"
keywords = ["CalDAV", "client", "WebDAV", "todo", "RFC4791"]
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]
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"
chrono = { version = "0.4", features = ["serde"] }
2021-07-08 15:57:45 +02:00
csscolorparser = { version = "0.5", features = ["serde"] }