valence/Cargo.toml

82 lines
1.8 KiB
TOML
Raw Normal View History

2022-01-21 01:39:49 +11:00
[package]
name = "valence"
2022-09-04 09:48:11 +10:00
version = "0.1.0+mc1.19.2"
2022-01-21 01:39:49 +11:00
edition = "2021"
2022-04-15 07:55:45 +10:00
description = "A framework for building Minecraft servers in Rust."
2022-01-21 01:41:24 +11:00
repository = "https://github.com/rj00a/valence"
2022-09-04 09:48:11 +10:00
readme = "README.md"
2022-01-21 01:39:49 +11:00
license = "MIT"
2022-09-04 09:48:11 +10:00
keywords = ["minecraft", "gamedev", "server"]
categories = ["game-engines"]
2022-04-18 10:04:39 +10:00
build = "build/main.rs"
2022-09-04 09:48:11 +10:00
authors = ["Ryan Johnson <ryanj00a@gmail.com>"]
2022-04-15 07:55:45 +10:00
2022-01-21 01:39:49 +11:00
[dependencies]
anyhow = "1.0.65"
2022-06-07 16:20:34 +10:00
approx = "0.5.1"
arrayvec = "0.7.2"
async-trait = "0.1.57"
base64 = "0.13.0"
bitfield-struct = "0.1.8"
Redesign packet processing and improve `Client` update procedure. (#146) Closes #82 Closes #43 Closes #64 # Changes and Improvements - Packet encoding/decoding happens within `Client` instead of being sent over a channel first. This is better for performance and lays the groundwork for #83. - Reduce the amount of copying necessary by leveraging the `bytes` crate and recent changes to `EncodePacket`. Performance is noticeably improved with maximum players in the `rust-mc-bot` test going from 750 to 1050. - Packet encoding/decoding code is decoupled from IO. This is easier to understand and more suitable for a future protocol lib. - Precise control over the number of bytes that are buffered for sending/receiving. This is important for limiting maximum memory usage correctly. - "packet controllers" are introduced, which are convenient structures for managing packet IO before and during the play state. - `byte_channel` module is created to help implement the `PlayPacketController`. This is essentially a channel of bytes implemented with an `Arc<Mutex<BytesMut>>`. - Error handling in the update procedure for clients was improved using `anyhow::Result<()>` to exit as early as possible. The `client` module is a bit cleaner as a result. - The `LoginPlay` packet is always sent before all other play packets. We no longer have to worry about the behavior of packets sent before that packet. Most packet deferring performed currently can be eliminated. - The packet_inspector was rewritten in response to the above changes. - Timeouts on IO operations behave better. # Known Issues - The packet_inspector now re-encodes packets rather than just decoding them. This will cause problems when trying to use it with the vanilla server because there are missing clientbound packets and other issues. This will be fixed when the protocol module is moved to a separate crate.
2022-11-01 21:11:51 +11:00
bytes = "1.2.1"
flume = "0.10.14"
futures = "0.3.24"
hmac = "0.12.1"
num = "0.4.0"
paste = "1.0.9"
rand = "0.8.5"
rayon = "1.5.3"
rsa = "0.6.1"
rsa-der = "0.3.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
sha1 = "0.10.5"
sha2 = "0.10.6"
thiserror = "1.0.35"
tracing = "0.1.37"
2022-07-02 08:29:31 +10:00
url = { version = "2.2.2", features = ["serde"] }
uuid = { version = "1.1.2", features = ["serde"] }
valence_nbt = { version = "0.4.0", path = "valence_nbt" }
valence_protocol = { version = "0.1.0", path = "valence_protocol", features = ["encryption", "compression"] }
vek = "0.15.8"
2022-04-15 07:55:45 +10:00
2022-07-18 19:02:37 +10:00
[dependencies.tokio]
version = "1.21.1"
2022-07-18 19:02:37 +10:00
features = ["macros", "rt-multi-thread", "net", "io-util", "sync", "time"]
2022-04-15 07:55:45 +10:00
[dependencies.reqwest]
version = "0.11.12"
2022-04-15 07:55:45 +10:00
default-features = false
# Avoid OpenSSL dependency on Linux.
features = ["rustls-tls", "json"]
[dev-dependencies]
tracing-subscriber = "0.3.16"
noise = "0.7.0"
2022-04-18 10:04:39 +10:00
[build-dependencies]
anyhow = "1.0.65"
heck = "0.4.0"
proc-macro2 = "1.0.43"
quote = "1.0.21"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
rayon = "1.5.3"
num = "0.4.0"
2022-07-02 08:29:31 +10:00
[workspace]
members = [
"valence_derive",
"valence_nbt",
"valence_protocol",
"packet_inspector",
"benchmarks/bench_players"
]
exclude = ["benchmarks/rust-mc-bot"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1