ics-adapter/Cargo.toml

18 lines
473 B
TOML
Raw Normal View History

2023-06-13 18:53:58 +00:00
[package]
name = "ics-adapter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
warp = "0.3"
2023-08-06 12:30:25 +00:00
reqwest = { version = "0.11", features = ["native-tls-vendored"] }
2023-06-13 18:53:58 +00:00
anyhow = "1"
icalendar = { version = "0.15", features = ["chrono-tz"] }
serde = { version = "1.0", features = ["derive"] }
urlencoding = "2"
chrono = "0"
2024-01-09 22:22:53 +00:00
rrule = "0"