forked from alvr-org/ALVR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(server): ✨ Split server into
_openvr
and _core
- Loading branch information
Showing
234 changed files
with
235 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,56 @@ | ||
[package] | ||
name = "alvr_server" | ||
version.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
authors = ["alvr-org", "Valve Corporation"] | ||
license = "MIT" | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
[features] | ||
gpl = [] # Enable for FFmpeg support on Windows. Always enabled on Linux | ||
trace-performance = ["profiling/profile-with-tracy"] | ||
|
||
[dependencies] | ||
alvr_audio.workspace = true | ||
alvr_common.workspace = true | ||
alvr_events.workspace = true | ||
alvr_filesystem.workspace = true | ||
alvr_packets.workspace = true | ||
alvr_server_io.workspace = true | ||
alvr_session.workspace = true | ||
alvr_sockets.workspace = true | ||
|
||
ash = "0.38" | ||
bincode = "1" | ||
bytes = "1" | ||
chrono = "0.4" | ||
fern = "0.6" | ||
flume = "0.11" | ||
futures = "0.3" | ||
headers = "0.3" | ||
hyper = { version = "0.14", features = [ | ||
"http2", | ||
"server", | ||
"stream", | ||
"runtime", | ||
"tcp", | ||
] } | ||
mdns-sd = "0.11" | ||
profiling = { version = "1", optional = true } | ||
reqwest = "0.11" # not used but webserver does not work without it. todo: investigate | ||
rosc = "0.10" | ||
tokio = { version = "1", features = [ | ||
"rt-multi-thread", | ||
"macros", | ||
"process", | ||
"io-util", | ||
"net", | ||
"fs", | ||
] } | ||
tokio-tungstenite = "0.20" | ||
tokio-util = { version = "0.7", features = ["codec"] } | ||
serde = "1" | ||
serde_json = "1" | ||
sysinfo = { version = "0.30", default-features = false } | ||
|
||
[build-dependencies] | ||
alvr_filesystem = { path = "../filesystem" } | ||
bindgen = "0.69" | ||
cc = { version = "1", features = ["parallel"] } | ||
walkdir = "2" | ||
|
||
[target.'cfg(target_os = "linux")'.build-dependencies] | ||
pkg-config = "0.3" | ||
[package] | ||
name = "alvr_server_core" | ||
version.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
authors = ["alvr-org", "Valve Corporation"] | ||
license = "MIT" | ||
|
||
[lib] | ||
crate-type = ["rlib", "cdylib"] | ||
|
||
[features] | ||
trace-performance = ["profiling/profile-with-tracy"] | ||
|
||
[dependencies] | ||
alvr_audio.workspace = true | ||
alvr_common.workspace = true | ||
alvr_events.workspace = true | ||
alvr_filesystem.workspace = true | ||
alvr_packets.workspace = true | ||
alvr_server_io.workspace = true | ||
alvr_session.workspace = true | ||
alvr_sockets.workspace = true | ||
|
||
ash = "0.38" | ||
bincode = "1" | ||
bytes = "1" | ||
chrono = "0.4" | ||
fern = "0.6" | ||
flume = "0.11" | ||
futures = "0.3" | ||
headers = "0.3" | ||
hyper = { version = "0.14", features = [ | ||
"http2", | ||
"server", | ||
"stream", | ||
"runtime", | ||
"tcp", | ||
] } | ||
mdns-sd = "0.11" | ||
profiling = { version = "1", optional = true } | ||
reqwest = "0.11" # not used but webserver does not work without it. todo: investigate | ||
rosc = "0.10" | ||
tokio = { version = "1", features = [ | ||
"rt-multi-thread", | ||
"macros", | ||
"process", | ||
"io-util", | ||
"net", | ||
"fs", | ||
] } | ||
tokio-tungstenite = "0.20" | ||
tokio-util = { version = "0.7", features = ["codec"] } | ||
serde = "1" | ||
serde_json = "1" | ||
sysinfo = { version = "0.30", default-features = false } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.