Create base Rust project

This commit is contained in:
2025-01-21 20:39:42 +01:00
parent 65116bb7f0
commit 1c99bbadc1
7 changed files with 2882 additions and 1 deletions

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[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"] }
rust-s3 = "0.36.0-beta.2"
redis = "0.28.1"
actix-web = "4"