matrix-google-calendar

Bot to manage meetings, pushrules, matrix status as well as showing daily agenda and allowing to shedule stuff.
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-google-calendar.git
Log | Files | Refs

Cargo.toml (780B)


      1 cargo-features = ["edition2021"]
      2 [package]
      3 name = "matrix-google-calendar"
      4 version = "0.1.0"
      5 edition = "2018"
      6 
      7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      8 
      9 [dependencies.matrix-sdk]
     10 version = "0.3"
     11 
     12 [dependencies]
     13 once_cell = "1.3.1"
     14 url = "2.2.2"
     15 
     16 # Matrix
     17 #mrsbfh = {git = "https://github.com/MTRNord/mrsbfh"}
     18 mrsbfh = {path = "../mrsbfh/mrsbfh"}
     19 serde = "1.0"
     20 tracing = "0.1"
     21 tracing-subscriber = "0.2"
     22 tracing-futures = "0.2.4"
     23 tokio = { version = "1", features = ["full"] }
     24 clap = "=3.0.0-beta.4"
     25 clap_derive = "=3.0.0-beta.4"
     26 async-trait = "0.1.41"
     27 thiserror = "1.0"
     28 regex = "1.4.3"
     29 
     30 # Google calendar
     31 oauth2 = "4.1.0"
     32 chrono = "0.4.19"
     33 axum = "0.2.3"
     34 reqwest = {version="0.11.4", features=["json"]}
     35 serde_json = "1.0.67"