-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.45 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
[package]
name = "mxrxtx"
version = "0.2.3"
authors = ["Erkki Seppälä <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1.0.44"
async-datachannel = { git = "https://github.com/eras/async-datachannel", rev = "6770399337f0701853495cd5c9589ffab4a3306c" }
async-trait = "0.1.60"
atomicwrites = "0.3.0"
bytes = "1.3.0"
chrono = "0.4.23"
clap = "3.0.0"
directories-next = "2.0.0"
futures = { version = "0.3.25", features = ["compat"] }
hex = "0.4.3"
indicatif = { version = "0.17.3", features = ["tokio"] }
log = "0.4.14"
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "819f962419b0bf8eccbbc67f777e05cddd2c6c03", features = ["sled", "e2e-encryption"] }
matrix-sdk-sled = "0.2.0"
matrix_uri = "0.1.0"
rand = "0.8.5"
regex = "1.5.4"
serde = "1.0.130"
serde_derive = "1.0.130"
serde_json = "1.0.68"
sha2 = "0.10.6"
tempdir = "0.3.7"
thiserror = "1.0.29"
tokio = { version = "1.24.0", features = ["test-util", "tokio-macros", "macros", "signal", "rt-multi-thread"] }
tokio-util = "0.7.4"
toml = "0.5.8"
tracing = { version = "0.1.37", features = ["attributes"] }
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
url = "2.2.2"
uuid = { version = "1.2.2", features = ["serde", "v4"] }
warp = "0.3.3"
[target.'cfg(not(target_os = "windows"))'.dependencies]
termion = "1.5.6"
[build-dependencies]
vergen = "3"
# It's annoyingly slow during testing otherwise
[profile.dev.package.sha2]
opt-level = 3