-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
67 lines (57 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "rumatui"
version = "0.1.19"
authors = ["Devin R <devin.ragotzy@gmail.com>"]
license = "MIT/Apache-2.0"
description = "A click-able command-line Matrix client."
repository = "https://github.com/DevinR528/rumatui"
keywords = ["chat", "matrix", "ruma", "matrix-rust-sdk", "tui"]
categories = ["command-line-utilities"]
edition = "2018"
readme = "README.md"
# at some point exclude this ??
# exclude = ["resources"]
[dependencies]
async-trait = "0.1.30"
chrono = "0.4"
comrak = "0.7.0"
crossbeam-channel = "0.4.2"
dirs = "2.0.2"
failure = "0.1.7"
itertools = "0.9.0"
js_int = "0.1.5"
lazy_static = "1.4.0"
sublime_fuzzy = "0.6.0"
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "037d62b" }
mdcat = "0.18.2"
muncher = "0.6.1"
regex = "1.3.9"
# depend on the same version matrix-sdk depends on so if matrix-sdk updates this does to
ruma-api = { git = "https://github.com/ruma/ruma", rev = "848b22568106d05c5444f3fe46070d5aa16e422b" }
serde = { version = "1.0.111", features = ["derive"] }
serde_json = "1.0.52"
termion = "1.5.5"
tokio = { version = "0.2.21", features = ["macros", "rt-threaded", "sync"] }
tracing-appender = "0.1"
tracing-subscriber = { version = "0.2.7", features = ["fmt"] }
tracing = "0.1.5"
# crates.io published fork of tui
rumatui-tui = "0.8.2"
webbrowser = "0.5.2"
url = "2.1.1"
uuid = { version = "0.8.1", features = ["v4"] }
[dependencies.pulldown-cmark]
version = "0.7.1"
default-features = false
features = ['simd']
[dependencies.syntect]
# onig rust fails to build w/o clang currently so pin syntect,
# see <https://github.com/rust-onig/rust-onig/issues/109> and GH-90
version = "4.1.1"
default-features = false
features = ["parsing", "assets", "dump-load"]
[workspace]
members = ["rumatui-tui"]
# For flamegraph COMMENT OUT
# [profile.release]
# debug = true