mxadm/Cargo.toml

28 lines
780 B
TOML
Raw Permalink Normal View History

2021-05-28 09:37:39 +00:00
[package]
name = "mxadm"
2021-07-21 19:32:24 +00:00
description = "A simple CLI interface to basic Matrix room admin tasks"
2021-08-04 19:32:09 +00:00
version = "0.1.2"
2021-05-28 09:37:39 +00:00
authors = ["Jez Cope <j.cope@erambler.co.uk>"]
edition = "2018"
2021-07-06 19:17:22 +00:00
license = "GPL-3.0-or-later"
repository = "https://tildegit.org/petrichor/mxadm"
2021-07-21 19:32:24 +00:00
homepage = "https://tildegit.org/petrichor/mxadm"
2021-07-06 19:17:22 +00:00
readme = "README.md"
exclude = ["envrc.sample", "flake.nix", "flake.lock"]
2021-05-28 09:37:39 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
rpassword = "5.0"
2021-07-21 19:32:24 +00:00
matrix-sdk = "0.3.*"
ruma-client-api = "0.11.*"
ruma-events = "0.23.*"
ruma-identifiers = "0.19.*"
tokio = { version = "^1.8.2", features = ["full"] }
serde = "1.0"
serde-lexpr = "0.1.0"
directories = "3.0"
lazy_static = "1.4.0"
2021-07-03 15:49:54 +00:00
anyhow = "1.0.41"