Initial commit

This commit is contained in:
2022-10-19 10:23:55 +02:00
commit e144a0aecc
13 changed files with 2544 additions and 0 deletions

27
Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "calendar-bot"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
async-mutex = "1.4.0"
blocking = "1.2.0"
bytes = "1.2.1"
chrono = "0.4.22"
chrono-tz = "0.6.3"
diesel = { version = "2.0.2", features = ["chrono", "sqlite"] }
diesel_migrations = "2.0.0"
ical = { version = "0.7.0", features = ["ical"], default-features = false }
log = "0.4.17"
pretty_env_logger = "0.4.0"
regex = "1.6.0"
reqwest = "0.11.12"
rrule = "0.10.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_yaml = "0.9.13"
teloxide = { version = "0.11.0", features = ["macros", "throttle"] }
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["macros"] }