Cargo.toml (765B)
1 [package] 2 name = "auto-invite-matrix-bot" 3 version = "0.1.0" 4 authors = ["Marcel <mtrnord1@gmail.com>"] 5 edition = "2018" 6 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9 [dependencies] 10 ruma-client = "0.3.0" 11 futures-core = "0.3.4" 12 futures-util = "0.3.4" 13 tokio = { version = "0.2.11", features = ["macros"] } 14 url = "2.1.1" 15 clap = { git = "https://github.com/clap-rs/clap/" } 16 serde = { version = "1.0", features = ["derive"] } 17 serde_yaml = "0.8" 18 log = "0.4.8" 19 fern = "0.5" 20 chrono = "0.4.10" 21 rand = "0.7.3" 22 failure = "0.1.6" 23 24 [patch.crates-io] 25 ruma-identifiers = { git = 'https://github.com/ruma/ruma-identifiers.git' } 26 ruma-events = { git = 'https://github.com/MTRNord/ruma-events.git', branch = "relates_to_backport" }