-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 899 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 899 Bytes
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
[package]
name = "matta-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package.bevy_rapier3d]
opt-level = 3
[profile.release]
codegen-units = 1
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
rand = "0.8"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"] }
bytes = { version = "1", features = ["serde"] }
octets = "0.3.0"
byteorder = "1.5.0"
reqwest = { version = "0.12", features = ["json", "blocking"] }
bevy = {version = "0.14", features= ["bevy_dev_tools"]}
bevy_rapier3d = { version = "0.27.0", default-features = false, features = [ "dim3", "simd-stable", "serde-serialize", "debug-render-3d" ] }
iyes_perf_ui = "0.3"
dotenvy = "0.15"
crossbeam = "0.8"