-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
47 lines (43 loc) · 1.13 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "matrix-send"
version = "0.2.1"
authors = ["Tilo Spannagel <[email protected]>"]
edition = "2021"
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.3", features = ["serde"] }
serde_json = "1.0"
directories = "4.0"
tokio = { version = "1.21", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
clap = { version = "3.2", features = ["derive"] }
atty = "0.2"
matrix-sdk = { version = "0.5", default-features = false, features = [
"rustls-tls",
"markdown",
] }
mime = "0.3"
mime_guess = "2.0"
[profile.release]
strip = "symbols"
lto = true
[profile.release-tiny]
inherits = "release"
opt-level = "s"