-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 770 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "gotify-matrix-bridge"
version = "0.0.1"
edition = "2021"
[dependencies]
anyhow = "1"
async-trait = "0.1"
futures = "0.3"
log = "0.4"
env_logger = "0.11"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "fs", "time"] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
url = "2"
pulldown-cmark = "0.10"
matrix-sdk = { version = "0.7.1", default-features = false, features = ["e2e-encryption", "rustls-tls", "sqlite", "bundled-sqlite"] }
uuid = { version = "1", features = ["v4"] }
thiserror = "1"
once_cell = "1"
structopt = "0.3.26"