-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
53 lines (48 loc) · 1.17 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
48
49
50
51
52
[package]
name = "matui"
version = "0.4.5"
authors = ["Phil Kulak"]
edition = "2021"
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
chrono = "0.4"
crossterm = "0.25"
config = { version = "0.13", features = ["toml"] }
dirs = "4.0"
emojis = "0.5"
futures = "0.3.24"
human_bytes = "0.4.3"
image = "0.24"
linkify = "0.9"
lazy_static = "1.4"
log = "0.4"
log-panics = { version = "2", features = ["with-backtrace"] }
mime = "0.3"
native-dialog = "0.5.1"
notify-rust = { version = "4.8", features = ["images"] }
notify = "5.1"
once_cell = "1.17"
open = "4.0"
rand = "0.8.5"
ratatui = "0.21.0"
regex = "1.8.1"
serde = { version = "1.0", features = ["derive"] }
simple-logging = "2.0"
tempfile = "3"
textwrap = "0.16"
timeago = "0.4"
tokio = { version = "1.24.2", features = ["rt-multi-thread"] }
[dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
rev = "8b5de47acb9486c8dbbbe5764c7c97c24b6997b8"
features = [
"markdown",
"image-rayon",
]
[dependencies.ruma]
git = "https://github.com/ruma/ruma.git"
rev = "8eea3e05490fa9a318f9ed66c3a75272e6ef0ee5"
[profile.release]
lto = true
opt-level = 'z' # Optimize for size.
codegen-units = 1