Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
avdb13 committed Feb 24, 2024
1 parent c2edc0c commit 63de180
Show file tree
Hide file tree
Showing 27 changed files with 318 additions and 495 deletions.
20 changes: 13 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[workspace]
members = [
"crates/core",
"crates/matrix",
"crates/server",
"crates/test"
]
members = ["crates/core", "crates/matrix", "crates/server", "crates/test"]
default-members = ["crates/server"]
resolver = "1"

[workspace.dependencies]
async-trait = "0.1.74"
hex = "0.4.3"
hmac = "0.12.1"
serde_path_to_error = "0.1.14"
serde_qs = "0.12.0"
sha1 = "0.10.6"
anyhow = "1.0.75"
axum = { version = "0.7.4", features = ["tokio"] }
chrono = { version = "0.4.34", features = ["serde"] }
Expand All @@ -17,7 +18,12 @@ http = "0.2.11"
mime = "0.3.17"
openssl = { version = "0.10.63", features = ["vendored"] }
openssl-sys = { version = "0.9.99", features = ["vendored"] }
reqwest = { version = "0.11.22", default-features = false, features = ["blocking", "json", "rustls", "multipart"] }
reqwest = { version = "0.11.22", default-features = false, features = [
"blocking",
"json",
"rustls",
"multipart",
] }
serde = "1.0.192"
serde_json = "1.0.108"
tokio = "1.34.0"
Expand Down
8 changes: 1 addition & 7 deletions crates/matrix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,8 @@ edition = "2021"
publish = false

[dependencies]
async-trait = "0.1.74"
hex = "0.4.3"
hmac = "0.12.1"
serde_path_to_error = "0.1.14"
serde_qs = "0.12.0"
sha1 = "0.10.6"
ruma-events = { version = "0.27.11", features = ["html", "markdown"] }
ruma-common = { version = "0.12.1", features = ["rand"] }
ruma-common = { version = "0.12.0", features = ["api", "rand"], default_features = false }
ruma-macros = "0.12.0"

# Workspace Dependencies
Expand Down
Empty file.
3 changes: 2 additions & 1 deletion crates/matrix/src/admin/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub mod resources;
// pub mod room;
mod user;
3 changes: 0 additions & 3 deletions crates/matrix/src/admin/resources/mod.rs

This file was deleted.

269 changes: 0 additions & 269 deletions crates/matrix/src/admin/resources/user.rs

This file was deleted.

File renamed without changes.
Empty file.
Empty file.
Loading

0 comments on commit 63de180

Please sign in to comment.