forked from zzhgithub/just_join_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (69 loc) · 1.96 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
[package]
name = "just_join"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "server"
path = "src/bin/server.rs"
[[bin]]
name = "client"
path = "src/bin/client.rs"
[dependencies]
bevy = "0.11.2"
block-mesh = "0.2.0"
ndshape = "0.3.0"
ahash = { version = "0.8.3", features = ["serde"] }
futures-lite = "1.13.0"
bevy-inspector-egui = "0.19.0"
bevy_egui = "0.21.0"
sled = "0.34.7"
serde = "1.0.164"
bincode = "1.3.3"
simdnoise = { version = "3.1.6", optional = true }
bevy_rapier3d = { version = "0.22.0", default-features = false }
bevy_atmosphere = "0.7.0"
bevy-ui-dsl = "0.6.1"
bevy_renet = "0.0.9"
renet_visualizer = { version = "0.0.6", features = ["bevy"] }
smooth-bevy-cameras = "0.9.0"
walkdir = "2.3.3"
structopt = "0.3"
ron = "0.8.0"
bevy_console = "0.8.0"
bevy_mod_raycast = "0.13.0"
clap = { version = "=4.1.10", features = ["derive"] }
egui-notify = "0.8.0"
rand = "0.8.5"
seldom_state = "0.7.0"
bevy_sprite3d = "2.5.0"
bit-vec = { version = "0.6", features = ["serde"] }
# 解决依赖冲突
num-rational = "^0.4.1"
fxhash = "^0.2.1"
simba = "^0.8"
bevy_mod_billboard = "0.4.0"
notify = "6.1.1"
egui_extras = "0.22.0"
bevy_easy_localize = "0.3.0"
huffman-compress = { git = "https://github.com/zzhgithub/rust-huffman-compress", branch = "features-serde", features = [
"serde",
] }
noise = { version = "0.8.2" }
lazy_static = "1.4.0"
bevy_vox_mesh = { git = "https://github.com/zzhgithub/bevy_vox_mesh.git", branch = "fix" }
# 解决冲突
lock_api = "0.4.10"
codespan-reporting = "0.11.1"
[profile.dev.package.bevy_rapier3d]
opt-level = 3
[profile.release]
codegen-units = 1
[target.'cfg(target_arch = "x86_64")'.dependencies]
simdnoise = { version = "3.1.6" }
# [target.'cfg(target_arch = "aarch64")'.dependencies]
# noise = { version = "0.8.2" }
[features]
default = ["server_ui"]
headless = ["bevy_rapier3d/dim3", "bevy_rapier3d/headless"]
server_ui = ["bevy_rapier3d/default"]