Skip to content

Commit

Permalink
Move server components into own directory
Browse files Browse the repository at this point in the history
  • Loading branch information
sebpuetz committed Apr 14, 2024
1 parent 014184f commit 193209e
Show file tree
Hide file tree
Showing 87 changed files with 11 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[workspace]
resolver = "2"
members = [
"./channels/*",
"./gateway",
"./ws-proto",
"./udp-proto",
"./voice/*",
"./server/channels/*",
"./server/gateway",
"./server/ws-proto",
"./server/udp-proto",
"./server/voice/*",
]

exclude = [
Expand Down
8 changes: 4 additions & 4 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ tokio-tungstenite = { version = "0.20.1", features = [
tracing = { version = "0.1.39", features = ["log"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tungstenite = { version = "0.20.1", features = ["rustls"] }
udp-proto = { version = "0.1.0", path = "../udp-proto" }
udp-proto = { version = "0.1.0", path = "../server/udp-proto" }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
voices-voice-crypto = { path = "../voice/crypto" }
voice-proto = { path = "../voice/proto", features = ["client"] }
voices-ws-proto = { path = "../ws-proto", features = ["client"] }
voices-voice-crypto = { path = "../server/voice/crypto" }
voice-proto = { path = "../server/voice/proto", features = ["client"] }
voices-ws-proto = { path = "../server/ws-proto", features = ["client"] }
rubato = { version = "0.14.1", features = ["log"] }
tracing-log = "0.1.3"
nnnoiseless = "0.5.1"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions server/gateway/tests/it/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#[tokio::test]
async fn test() {}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 193209e

Please sign in to comment.