-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
35 lines (24 loc) · 853 Bytes
/
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
[package]
name = "space"
version = "0.0.1"
authors = ["Nikita Ramses Abdoelrahman <[email protected]>"]
description="A high performance multi-threaded ECS game server for Space Frontiers."
homepage="https://github.com/nikitavondel/space"
license-file="LICENSE"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = {version= "0.5"}
bevy_rapier3d = {version= "0.11.0" ,default-features = false, features = [ "dim3", "enhanced-determinism" ]}
serde = {version= "1.0.130"}
serde_json = {version= "1.0.68"}
bevy_networking_turbulence = "0.3.3"
rand = "0.8.4"
const_format = "0.2.21"
vector2math = "0.13.0"
doryen-fov = { git = "https://github.com/nikitavondel/doryen-fov" }
voca_rs = "1.14.0"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 3