forked from MCHPR/MCHPRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 929 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
[workspace]
members = ["crates/proc_macros", "crates/redpiler_graph"]
[package]
name = "mchprs"
version = "0.4.1"
authors = ["StackDoubleFlow <[email protected]>"]
edition = "2018"
description = "A multithreaded minecraft server built for redstone."
readme = "README.md"
license = "MIT"
keywords = ["minecraft", "server", "redstone"]
repository = "https://github.com/MCHPR/MCHPRS"
homepage = "https://github.com/MCHPR/MCHPRS"
include = [
"**/*.rs",
"Cargo.toml",
]
[profile.dev]
# MCHPRS runs far too slow without any optimizations to even be usable for testing
opt-level = 1
[profile.release]
# This seems to speed up Redpiler compile times
lto = "fat"
[dependencies]
mchprs_core = { path = "./crates/core" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
tracing = "0.1"
[patch.crates-io]
hematite-nbt = { git = "https://github.com/StackDoubleFlow/hematite_nbt" }