Cargo.toml (990B)
1 [package] 2 name = "example-bot" 3 version = "0.2.0" 4 authors = ["MTRNord <mtrnord1@gmail.com>"] 5 edition = "2021" 6 license = "AGPL-3.0-or-later" 7 publish = false 8 repository = "https://github.com/MTRNord/mrsbfh" 9 10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 11 12 [dependencies.matrix-sdk] 13 version = "0.4.1" 14 15 # To create a bot that uses the Rust implementation of TLS use the default features minus native-tls 16 # Ex: 17 # [dependencies.matrix-sdk] 18 # version = "0.4.1" 19 # default_features = false 20 # features = ["encryption", "sled_cryptostore", "sled_state_store", "require_auth_for_profile_requests", "rustls-tls"] 21 22 [dependencies] 23 mrsbfh = {version = "0.4.0", path = "../mrsbfh"} 24 serde = "1.0" 25 tracing = "0.1" 26 tracing-subscriber = "0.3.9" 27 tracing-futures = "0.2.5" 28 tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "macros"] } 29 clap = { version = "3.1.1", features = ["derive"] } 30 async-trait = "0.1.52" 31 thiserror = "1.0" 32 regex = "1.5.4"