forked from NexusSocial/nexus-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
99 lines (92 loc) · 2.73 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[workspace]
resolver = "2"
members = [
"apps/legacy_web/backend",
"apps/legacy_web/frontend",
"apps/rvid/client",
"apps/rvid/server",
"apps/social/client",
"apps/social/common",
"apps/social/networking",
"apps/social/server",
"crates/bevy_egui_keyboard",
"crates/egui-picking",
"crates/picking-xr",
"crates/replicate/client",
"crates/replicate/common",
"crates/replicate/server",
"crates/universal-capture",
]
# These settings will apply to all members of the workspace that opt in to them
[workspace.package]
version = "0.0.0"
license = "MIT OR BSD-2-Clause-Patent OR Apache-2.0"
repository = "https://github.com/NexusSocial/nexus-vr"
edition = "2021"
rust-version = "1.76"
[workspace.dependencies]
base64 = "0.21.7"
bevy = "0.13"
bevy-inspector-egui = "0.23.4"
bevy_egui = { git = "https://github.com/Schmarni-Dev/bevy_egui/", branch = "nexus-use-bevy-0.13" }
bevy_mod_inverse_kinematics = "0.6"
bevy_mod_picking = { version = "0.18",default-features = false}
bevy_mod_raycast = "0.17.0"
bevy_oxr = { git = "https://github.com/awtterpip/bevy_oxr", rev = "c6d0686" }
bevy_picking_core = "0.18"
bevy_schminput = { git = "https://github.com/Schmarni-Dev/Schminput", rev = "d5695bb" }
bevy_vrm = "0.0.8"
bevy_web_asset = { git = "https://github.com/Schmarni-Dev/bevy_web_asset", rev = "f10a2df" }
bytes = "1.5.0"
clap = { version = "4.4.11", features = ["derive"] }
color-eyre = "0.6"
egui = "0.26"
egui-picking = { path = "crates/egui-picking" }
eyre = "0.6"
futures = "0.3.30"
lightyear = "0.12"
openxr = "0.18"
picking-xr = { path = "crates/picking-xr" }
pin-project = "1"
random-number = "0.1.8"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.114"
slotmap = "1.0.7"
social-common.path = "apps/social/common"
social-networking.path = "apps/social/networking"
thiserror = "1.0.56"
tokio = { version = "1.35.1", default-features = false }
tokio-serde = "0.9"
tokio-util = { version = "0.7.10", default-features = true }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.0"
uuid = "1.7.0"
wtransport = "0.1.11"
bevy_egui_keyboard.path = "crates/bevy_egui_keyboard"
[workspace.dependencies.derive_more]
version = "0.99"
default-features = false
features = [
"add",
"deref",
"deref_mut",
"mul",
"from",
]
[workspace.dependencies.opus]
git = "https://github.com/Schmarni-Dev/opus-rs"
branch = "unsafe-libopus"
default-features = false
features = [
"unsafe-libopus-backend",
]
[profile.dev]
# Enable a small amount of optimization in debug mode
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
# Seems to cause crashes on mac on opt-level 3
opt-level = 2
[patch.crates-io]
# bevy_pbr = { package = "bevy_pbr", git = "https://github.com/MalekiRe/bevy", branch = "release-0.12.1" }