22 lines
840 B
TOML
22 lines
840 B
TOML
|
[package]
|
||
|
name = "matrix-media-event-decrypt"
|
||
|
description = "Decrypt matrix media events"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
authors = ["networkException <git@nwex.de>"]
|
||
|
license = "BSD-2-Clause"
|
||
|
repository = "https://git.nwex.de/networkException/matrix-media-event-decrypt"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.86"
|
||
|
clap = { version = "4.5.16", features = ["derive", "env"] }
|
||
|
env_logger = "0.11.5"
|
||
|
log = "0.4.22"
|
||
|
# NOTE: We need newer apis for resolving the homeserver's base url
|
||
|
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "40d447dc69a29f0d805984157565e5c5eeca265e", default-features = false, features = ["native-tls", "e2e-encryption"] }
|
||
|
rpassword = "7.3.1"
|
||
|
rustyline-async = "0.4.3"
|
||
|
serde = { version = "1.0.208", features = ["derive"] }
|
||
|
serde_json = "1.0.125"
|
||
|
tokio = { version = "1.39.3", features = ["full"] }
|