-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
205 lines (185 loc) · 6.86 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
[package]
name = "decentra-bevy"
version = "0.1.0"
edition = "2021"
[features]
default = ["livekit", "ffmpeg", "inspect"]
console = []
dcl-assert = ["common/dcl-assert"]
gen-tests = []
tracy = ["bevy/trace_tracy"]
inspect = ["dcl/inspect", "system_ui/inspect"]
hot_reload = ["bevy/file_watcher", "ipfs/hot_reload"]
livekit = ["comms/livekit"]
ffmpeg = ["av/ffmpeg"]
[profile.release]
codegen-units = 1
[profile.dev.package."*"]
opt-level = 3
[workspace.lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[workspace]
members = ["crates/*"]
[workspace.dependencies]
analytics = { path="crates/analytics" }
common = { path="crates/common" }
avatar = { path="crates/avatar" }
comms = { path="crates/comms" }
input_manager = { path="crates/input_manager" }
ipfs = { path="crates/ipfs" }
system_ui = { path="crates/system_ui" }
user_input = { path="crates/user_input" }
visuals = { path="crates/visuals" }
ui_core = { path="crates/ui_core" }
scene_material = { path="crates/scene_material" }
scene_runner = { path="crates/scene_runner" }
console = { path="crates/console" }
av = { path="crates/av" }
dcl = { path="crates/dcl" }
dcl_component = { path="crates/dcl_component" }
restricted_actions = { path="crates/restricted_actions" }
wallet = { path="crates/wallet" }
nft = { path="crates/nft" }
tween = { path="crates/tween" }
world_ui = { path="crates/world_ui" }
collectibles = { path="crates/collectibles" }
social = { path="crates/social" }
imposters = { path="crates/imposters" }
system_bridge = { path="crates/system_bridge" }
texture_camera = { path="crates/texture_camera" }
propagate = { path="crates/propagate" }
bevy = { version = "0.14", default-features = false, features=[
"animation",
"bevy_asset",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi_threaded",
"png",
"hdr",
"x11",
"bevy_gizmos",
"tonemapping_luts",
"default_font",
"webgl2",
"jpeg"
] }
bevy_console = { git = "https://github.com/robtfm/bevy-console", branch="bevy-0.14" }
bevy_egui = "0.28"
serde = "1.0.152"
serde_json = { version = "1.0.92", features = ["raw_value"] }
itertools = "0.12"
tokio = { version = "1.40", features = ["sync"] }
anyhow = "1.0.70"
urn = "0.7.0"
ethers-signers = "2.0.3"
ethers-core = "2.0.3"
futures-lite = "1.12.0"
bimap = "0.6.3"
prost = "0.11.8"
clap = "4.1.10"
once_cell = "1.16.0"
rapier3d-f64 = "0.22"
urlencoding = "2.1.2"
async-std = "1.12.0"
# todo: use isahc 2.0 when it's released
isahc = { git = "https://github.com/sagebind/isahc", rev="096aff7b13f4ff5bb474fdc27bc30b297a2968f6", default-features = false, features = ["json", "text-decoding", "http2", "rustls-tls-native-certs"] }
kira = "0.8.4"
data-encoding = "2.5"
opener = "0.6"
chrono = { version = "0.4.31", features = ["serde"] }
bevy_dui = { git = "https://github.com/robtfm/bevy_dui", branch = "main-14" }
bevy_ecss = { git = "https://github.com/robtfm/bevy_ecss", branch = "v0.14" }
bevy_kira_audio = { git = "https://github.com/robtfm/bevy_kira_audio", branch = "0.14-dcl", features=["flac", "mp3", "ogg", "wav"] }
bevy_simple_text_input = { git = "https://github.com/robtfm/bevy_simple_text_input", features=["clipboard"], branch="multiline" }
directories = "5"
uuid = { version = "1.7", features = ["v4"] }
build-time = "0.1.3"
async-tungstenite = { version = "0.28.0", features = ["async-std-runtime", "async-tls"] }
dcl-rpc = { version = "2.3.5", default-features = false, features=["client", "websockets", "codegen", "server", "tungstenite"] }
async-trait = "0.1.68"
fastrand = "2"
rand = "0.8.5"
futures-util = "0.3.28"
async-tls = "0.13.0"
boimp = { git = "https://github.com/robtfm/boimp", branch = "master" }
crc = "3"
[dependencies]
analytics = { workspace = true }
common = { workspace = true }
avatar = { workspace = true }
comms = { workspace = true }
input_manager = { workspace = true }
ipfs = { workspace = true }
system_ui = { workspace = true }
user_input = { workspace = true }
visuals = { workspace = true }
ui_core = { workspace = true }
scene_runner = { workspace = true }
console = { workspace = true }
av = { workspace = true }
restricted_actions = { workspace = true }
wallet = { workspace = true }
dcl = { workspace = true }
nft = { workspace = true }
tween = { workspace = true }
scene_material = { workspace = true }
world_ui = { workspace = true }
collectibles = { workspace = true }
social = { workspace = true }
imposters = { workspace = true }
system_bridge = { workspace = true }
texture_camera = { workspace = true }
propagate = { workspace = true }
bevy = { workspace = true }
bevy_console = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
clap = { workspace = true }
uuid = { workspace = true }
build-time = { workspace = true }
pico-args = "0.5.0"
mimalloc = { version = "*", default-features = false }
chrono = { workspace = true }
tracing-appender = "0.2.3"
log-panics = { version = "2.1.0", features = ["with-backtrace"] }
# non-main dependencies
futures-lite = { workspace = true }
dcl_component = { workspace = true }
tokio = { workspace = true }
bevy_simple_text_input = { workspace = true }
[build-dependencies]
prost-build = "0.11.8"
[patch.crates-io]
bevy = { git = "https://github.com/robtfm/bevy", branch = "release-0.14-dcl-cosmic-noimage" }
# bevy = { path="../bevy" }
dcl-rpc = { git = "https://github.com/decentraland/rpc-rust", branch = "chore/bump-tokio-tungstenite" }
ffmpeg-next = { git = "https://github.com/robtfm/rust-ffmpeg", branch = "audio-linesize-0-6.1" }
# parry3d-f64 = { git = "https://github.com/robtfm/parry", branch = "try_convex" }
# rapier3d-f64 = { git = "https://github.com/robtfm/rapier", branch = "master" }
deno_core = { git = "https://github.com/robtfm/deno_core", branch = "0_307_hotfix" }
serde_v8 = { git = "https://github.com/robtfm/deno_core", branch = "0_307_hotfix" }
deno_ops = { git = "https://github.com/robtfm/deno_core", branch = "0_307_hotfix" }
deno_console = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_fetch = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_net = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_url = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_webidl = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_web = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
deno_websocket = { git = "https://github.com/robtfm/deno", branch = "1_46_hotfix" }
# [patch."https://github.com/robtfm/bevy_dui"]
# bevy_dui = { path = "../bevy_dui" }
# [patch."https://github.com/robtfm/bevy_simple_text_input"]
# bevy_simple_text_input = { path = "../bevy_simple_text_input" }
# [patch."https://github.com/robtfm/boimp"]
# boimp = { path = "../boimp" }
# [patch."https://github.com/robtfm/bevy_atmosphere"]
# bevy_atmosphere = { path = "../bevy_atmosphere" }