-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 902 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
36
37
38
39
40
41
[workspace]
members = [
"nbt",
"protocol_derive",
"plugins/bedrock/protocol",
"plugins/java",
"plugins/java/protocol",
"plugins/java/savegame",
"plugins/java/session_api",
"plugins/physics"
]
resolver = "2"
[package]
name = "tesseract_base"
version = "0.0.0"
edition = "2021"
authors = ["Valpahee <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/valaphee/tesseract.git"
description = "An ECS-based Minecraft server written in Rust."
[dependencies]
rand = "0.8.5"
tesseract_java_protocol = { path = "plugins/java/protocol" }
uuid = "1.3.0"
[dependencies.bevy]
git = "https://github.com/valaphee/bevy.git"
branch = "tesseract"
default-features = false
[dev-dependencies]
tesseract_java = { path = "plugins/java" }
tesseract_physics = { path = "plugins/physics" }
[profile.release]
strip = true
lto = true
panic = "abort"
codegen-units = 1