forked from tilosp/matrix-send-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 999 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "matrix-send"
version = "0.2.1"
authors = ["Tilo Spannagel <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/tilosp/matrix-send-rs"
homepage = "https://crates.io/crates/matrix-send"
keywords = ["matrix", "chat", "messaging"]
description = "Non-Interactive CLI Matrix Client"
readme = "README.md"
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
url = { version = "2.2", features = ["serde"] }
serde_json = "1.0"
directories = "3.0"
tokio = { version = "1.11", default-features = false, features = ["rt-multi-thread", "macros"] }
structopt = "0.3"
atty = "0.2"
matrix-sdk = { version = "0.4", default-features = false, features = ["rustls-tls", "markdown"] }
mime = "0.3"
mime_guess = "2.0"