mrsbfh

Matrix-Rust-SDK-Bot-Framework-Helper
git clone git://archive.git.mtrnord.blog/MTRNord/mrsbfh.git
Log | Files | Refs | README

Cargo.toml (1063B)


      1 [package]
      2 name = "mrsbfh"
      3 version = "0.4.1"
      4 authors = ["MTRNord <mtrnord1@gmail.com>"]
      5 edition = "2021"
      6 description = "A toolkit for writing commandbots more efficient in rust for matrix."
      7 license = "AGPL-3.0-or-later"
      8 repository = "https://github.com/MTRNord/mrsbfh"
      9 keywords = ["matrix", "chat", "framework", "simple", "communication"]
     10 categories = ["network-programming"]
     11 readme = "../README.md"
     12 
     13 [dependencies.matrix-sdk]
     14 version = "0.4.1"
     15 default_features = false
     16 
     17 [dependencies]
     18 url = "2.2.2"
     19 
     20 thiserror = "1.0"
     21 
     22 # Command macros
     23 mrsbfh-macros = {version = "0.4.0", path = "../mrsbfh-macros", optional = true}
     24 
     25 tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
     26 tracing = "0.1"
     27 
     28 serde = "1.0"
     29 serde_yaml = "0.8"
     30 serde_json = "1"
     31 
     32 pulldown-cmark = {version = "0.9.1", optional = true} # For generating the help text
     33 
     34 regex = "1.5"
     35 async-trait = "0.1"
     36 lazy_static = "1"
     37 
     38 [features]
     39 default = ["macros", "native-tls"]
     40 macros = ["mrsbfh-macros", "pulldown-cmark"]
     41 rustls = ["matrix-sdk/rustls-tls"]
     42 native-tls = ["matrix-sdk/native-tls"]