Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 80 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ features = [
"http2",
"json",
"matched-path",
"query",
"tokio",
"tracing",
]
Expand Down Expand Up @@ -109,6 +110,9 @@ version = "1.11"
[workspace.dependencies.bytesize]
version = "2.3"

[workspace.dependencies.crc32fast]
version = "1"

[workspace.dependencies.cargo_toml]
version = "0.22"
default-features = false
Expand Down Expand Up @@ -319,6 +323,7 @@ features = [
"rustls",
"rustls-native-certs",
"socks",
"stream",
]

[workspace.dependencies.ring]
Expand Down Expand Up @@ -481,6 +486,9 @@ features = [
"printing",
]

[workspace.dependencies.tar]
version = "0.4"

[workspace.dependencies.termimad]
version = "0.34"
default-features = false
Expand Down
2 changes: 2 additions & 0 deletions src/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,11 @@ serde_html_form.workspace = true
serde_json.workspace = true
serde.workspace = true
sha1.workspace = true
tar.workspace = true
tokio.workspace = true
tracing.workspace = true
tuwunel-core.workspace = true
tuwunel-database.workspace = true
tuwunel-service.workspace = true
url.workspace = true

Expand Down
2 changes: 2 additions & 0 deletions src/api/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pub(super) mod read_marker;
pub(super) mod redact;
pub(super) mod register;
pub(super) mod relations;
pub(super) mod replication;
pub(super) mod report;
pub(super) mod room;
pub(super) mod search;
Expand Down Expand Up @@ -70,6 +71,7 @@ pub(super) use read_marker::*;
pub(super) use redact::*;
pub(super) use register::*;
pub(super) use relations::*;
pub(super) use replication::*;
pub(super) use report::*;
pub(super) use room::*;
pub(super) use search::*;
Expand Down
Loading