-
Notifications
You must be signed in to change notification settings - Fork 124
/
Cargo.toml
212 lines (200 loc) · 5.7 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
206
207
208
209
210
211
212
[workspace]
default-members = ["app"]
exclude = ["guest", "tmp", "web"]
members = ["crates/*", "libs/*", "shared_crates/*", "app", "campfire", "schema"]
resolver = "2"
[workspace.package]
version = "0.3.2-dev"
rust-version = "1.70.0"
[workspace.dependencies]
aho-corasick = "1.1.1"
profiling = { version = "1.0.11", features = ["profile-with-puffin"] }
tracing = "0.1.37"
tracing-tree = { version = "0.2", features = ["time"] }
tracing-stackdriver = "0.6.2"
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"time",
"local-time",
"parking_lot",
] }
wgpu = { version = "0.16.3", features = ["serde", "trace", "replay"] }
wgpu-types = { version = "0.16", features = ["serde"] }
winit = { version = "0.28.6", features = ["serde"] }
futures = { version = "0.3", default-features = false, features = ["std"] }
tokio = { version = "1.32", features = ["parking_lot"] }
bytemuck = { version = "1.14", features = ["derive"] }
glam = { version = "0.24", features = ["bytemuck", "serde", "rand"] }
gltf = "1.3.0"
ordered-float = { version = "3.9.1", features = ["serde"] }
derive_more = "0.99.17"
image = "0.24.7"
image_hasher = "1.2.0"
itertools = "0.10.5"
ndarray = { version = "0.15.6", features = ["serde"] }
rand = "0.8.5"
rand_pcg = "0.3.1"
glyph_brush = "0.7.7"
dyn-clonable = "0.9.0"
semver = { version = "1.0", features = ["serde"] }
paste = "1.0"
as-any = "0.3.1"
closure = "0.3.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_bytes = "0.11.12"
serde_json = "1.0"
serde_path_to_error = "0.1"
byteorder = "1.4.3"
bincode = "1.3.3"
lazy_static = "1.4.0"
strum = { version = "0.24", features = ["derive"] }
derivative = "2.2.0"
async-trait = "0.1.73"
png = "0.17.10"
puffin = "0.16.0"
puffin_http = "0.13.0"
futures-signals = "0.3"
open = "2.1.3"
which = "4.4.2"
fbxcel = { version = "0.9.0", features = ["tree"] }
reqwest = { version = "0.11.20", default-features = false, features = [
'blocking',
'rustls-tls',
'json',
] }
url = { version = "2", features = ["serde"] }
thiserror = "1.0"
thread-priority = "0.10.0"
once_cell = { version = "1.18.0", features = ["parking_lot"] }
smallvec = "1.11.1"
yaml-rust = { version = "0.5", package = "yaml-rust-davvid" }
maplit = "1.0.2"
chrono = { version = "0.4", default-features = false, features = [
"serde",
"clock",
] }
manual_future = "0.1.1"
base64 = "0.13.1"
env_logger = "0.10.0"
async-recursion = "1.0.5"
anyhow = { version = "1.0", features = ["backtrace"] }
bitflags = "1.3"
parking_lot = { version = "0.12.1", features = ["serde"] }
clap = { version = "4.4", features = ["derive"] }
sentry = { version = "0.31", default-features = false, features = [
'backtrace',
'contexts',
'panic',
'debug-images',
'reqwest',
'rustls',
'anyhow',
] }
sentry-log = "0.31"
sentry-anyhow = "0.31"
sentry-rust-minidump = "0.6"
enumflags2 = "0.6"
num-traits = "0.2"
num-derive = "0.3"
proc-macro2 = "1.0"
quote = "1.0"
pretty_assertions = "1.4.0"
syn = { version = "1.0", features = ["full", "extra-traits"] }
proc-macro-crate = "1.3.1"
bytes = { version = "1.5.0", features = ["serde"] }
dashmap = "5.5.3"
slotmap = "1.0.6"
atomic_refcell = "0.1.11"
flume = { version = "0.11", features = ["async"] }
im = "15.1.0"
axum = "0.6.20"
axum-server = { version = "0.5", features = ["rustls", "tls-rustls"] }
tower-http = { version = "0.3.5", features = ["cors", "fs"] }
tower = "0.4.13"
indexmap = { version = "2.0", features = ["serde"] }
fixed-vec-deque = "0.1.11"
hex = "0.4.3"
ring = "0.16.20"
data-encoding = "2.4.0"
convert_case = "0.6.0"
fs_extra = "1.3.0"
slugify = "0.1.0"
serde_yaml = "0.9.25"
bit-set = "0.5.3"
bit-vec = "0.6.3"
glob = "0.3.1"
walkdir = "2"
relative-path = { version = "1.9", features = ["serde"] }
pin-project = "1.1"
abort-on-drop = "0.2"
toml = { version = "0.7.8", features = ["preserve_order"] }
percent-encoding = "2.3.0"
indoc = "2.0"
cargo_toml = "0.15.3"
toml_edit = "0.19.15"
arboard = "3.2.1"
noise = { version = "0.7.0", default-features = false }
russimp = { version = "1.0.6", features = ['prebuilt'] }
symphonia = { version = "0.5", default-features = false, features = [
"mp3",
"pcm",
"wav",
] }
vorbis_rs = "0.5.4"
optivorbis = "0.2.0"
colored = "2.0.4"
directories = "5.0.1"
ulid = { version = "1.1.0", features = ["serde"] }
enum_dispatch = "0.3"
uuid = { version = "1.4", features = ["v4"] }
scopeguard = "1.2"
prost = "0.11"
tokio-stream = "0.1"
tonic = { version = "0.9", features = ["gzip", "tls", "tls-roots"] }
md-5 = "0.10"
pollster = "0.3.0"
rpassword = "7.2"
sha2 = "0.10"
pathdiff = "0.2"
cfg-if = "1.0"
# Web Client
web-sys = { version = "0.3.64", features = [
"CanvasRenderingContext2d",
"Document",
"Element",
"HtmlCanvasElement",
"HtmlDocument",
"Performance",
"Window",
] }
js-sys = { version = "0.3.64" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
#
# Networking
#
time = { version = "0.3", features = ["local-offset"] }
quinn = { version = "0.10" }
rustls-native-certs = "0.6.3"
webpki-roots = "0.23.1"
mikktspace = { git = "https://github.com/gltf-rs/mikktspace" }
rustls = { version = "0.21.7", features = ["dangerous_configuration", "quic"] }
rustls-pemfile = "1.0"
# See: https://github.com/hyperium/h3/pull/183
h3 = { git = "https://github.com/hyperium/h3" }
h3-webtransport = { git = "https://github.com/hyperium/h3" }
h3-quinn = { git = "https://github.com/hyperium/h3" }
http = { version = "0.2.9" }
#
# WASM
#
wasi-cap-std-sync = { version = "14.0.0", git = "https://github.com/bytecodealliance/wasmtime", rev = "9f00198611537c7a9b384c9f9e3db85e0ca15123" }
wit-bindgen-core = "0.9.0"
wit-bindgen-rust = "0.9.0"
wit-component = "0.11.0"
[profile.dev.package.cranelift-codegen]
opt-level = 3
[profile.dev.package.cranelift-wasm]
opt-level = 3
[profile.release]
incremental = true