MatrixGW/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

2025-01-21 20:39:42 +01:00
[package]
name = "matrix_gateway"
version = "0.1.0"
edition = "2021"
[dependencies]
log = "0.4.25"
env_logger = "0.11.6"
clap = { version = "4.5.26", features = ["derive", "env"] }
lazy_static = "1.5.0"
anyhow = "1.0.95"
serde = { version = "1.0.217", features = ["derive"] }
2025-01-23 21:28:33 +01:00
serde_json = "1.0.137"
rust-s3 = { version = "0.36.0-beta.2", features = ["tokio"] }
2025-01-21 21:26:01 +01:00
actix-web = "4"
actix-session = { version = "0.10.1", features = ["redis-session"] }
light-openid = "1.0.2"
thiserror = "2.0.11"
2025-02-03 22:34:13 +01:00
rand = "0.9.0"
2025-01-22 20:35:52 +01:00
rust-embed = "8.5.0"
2025-01-22 20:56:35 +01:00
mime_guess = "2.0.5"
2025-01-23 21:28:33 +01:00
askama = "0.12.1"
2025-01-27 21:31:33 +01:00
urlencoding = "2.1.3"
uuid = { version = "1.12.1", features = ["v4", "serde"] }
2025-01-27 21:54:03 +01:00
ipnet = { version = "2.11.0", features = ["serde"] }
2025-01-29 21:50:17 +01:00
chrono = "0.4.39"
2025-02-06 21:40:11 +01:00
futures-util = { version = "0.3.31", features = ["sink"] }
jwt-simple = { version = "0.12.11", default-features = false, features = ["pure-rust"] }
2025-02-03 20:50:25 +01:00
actix-remote-ip = "0.1.0"
bytes = "1.9.0"
sha2 = "0.11.0-pre.4"
2025-02-03 22:34:13 +01:00
base16ct = "0.2.0"
2025-02-06 21:40:11 +01:00
ruma = { version = "0.12.0", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
actix-ws = "0.3.0"
tokio = { version = "1.43.0", features = ["rt", "time", "macros"] }
time = "0.3.37"