forked from voxelize/voxelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (62 loc) · 1.33 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
[package]
description = "A fast multiplayer voxel engine."
edition = "2021"
exclude = [
"client",
"docs",
"dist",
"examples",
"node_modules",
"package.json",
"tsconfig.*",
"yarn.lock",
"*.js",
"*.ts",
"transport",
"assets",
"data",
"tests",
]
license = "MIT"
name = "voxelize"
repository = "https://github.com/voxelize/voxelize"
version = "0.8.99"
[lib]
name = "voxelize"
path = "server/lib.rs"
[[example]]
name = "demo"
path = "examples/server/main.rs"
[dependencies]
actix = "0.13.3"
actix-cors = "0.7.0"
actix-files = "0.6.5"
actix-web = "4.5.1"
actix-web-actors = "4.3.0"
base64 = "0.22.0"
byteorder = "1.5.0"
crossbeam-channel = "0.5.12"
fastrand = "2.0.2"
hashbrown = { version = "0.14.3", features = ["serde", "rayon"] }
indicatif = "0.17.8"
libflate = "2.0.0"
kdtree = "0.7.0"
nalgebra = "0.33.0"
nanoid = "0.4.0"
noise = "0.9.0"
num = "0.4.2"
prost = "0.12.4"
rapier3d = { version = "0.21.0", features = ["simd-stable"] }
rayon = "1.10.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
specs = { version = "0.20.0", features = ["specs-derive", "serde"] }
splines = { version = "4.3.1", features = ["serde"] }
pathfinding = "4.9.1"
chrono = "0.4.19"
fern = { version = "0.6.2", features = ["colored"] }
log = "0.4.21"
[build-dependencies]
prost-build = "0.12.4"
[profile.release]
opt-level = 3