nurtex 1.2.1

Create efficient and lightweight Minecraft bots or clients.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "nurtex"
version = "1.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Create efficient and lightweight Minecraft bots or clients."
documentation = "https://docs.rs/nurtex/latest/"
readme = "README.md"
keywords = [
    "minecraft",
    "bot",
    "async",
    "fast",
]
categories = [
    "games",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/NurtexMC/nurtex"

[features]
all = [
    "bot",
    "proxy",
    "swarm",
    "cluster",
    "speedometer",
    "random",
]
bot = []
cluster = [
    "bot",
    "swarm",
]
default = [
    "bot",
    "proxy",
    "swarm",
]
proxy = ["bot"]
random = []
speedometer = ["bot"]
swarm = ["bot"]

[lib]
name = "nurtex"
path = "src/lib.rs"

[[example]]
name = "bot_customization"
path = "examples/bot_customization.rs"

[[example]]
name = "bot_with_handlers"
path = "examples/bot_with_handlers.rs"

[[example]]
name = "bot_with_proxy"
path = "examples/bot_with_proxy.rs"

[[example]]
name = "cluster_control"
path = "examples/cluster_control.rs"

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"

[[example]]
name = "minimal_bot"
path = "examples/minimal_bot.rs"

[[example]]
name = "minimal_cluster"
path = "examples/minimal_cluster.rs"

[[example]]
name = "minimal_swarm"
path = "examples/minimal_swarm.rs"

[[example]]
name = "reading_packets"
path = "examples/reading_packets.rs"

[[example]]
name = "reusable_cluster"
path = "examples/reusable_cluster.rs"

[[example]]
name = "reusable_swarm"
path = "examples/reusable_swarm.rs"

[[example]]
name = "swarm_control"
path = "examples/swarm_control.rs"

[[example]]
name = "swarm_reading_packets"
path = "examples/swarm_reading_packets.rs"

[[example]]
name = "swarm_with_handlers"
path = "examples/swarm_with_handlers.rs"

[[example]]
name = "swarm_with_speedometer"
path = "examples/swarm_with_speedometer.rs"

[[example]]
name = "writing_packets"
path = "examples/writing_packets.rs"

[dependencies.hashbrown]
version = "0.17.0"

[dependencies.nurtex-protocol]
version = "1.2.1"

[dependencies.nurtex-proxy]
version = "1.2.1"

[dependencies.nurtex-registry]
version = "1.2.1"

[dependencies.rand]
version = "0.8"

[dependencies.tokio]
version = "1.50.0"
features = [
    "net",
    "io-util",
    "rt",
    "time",
    "sync",
]

[dependencies.uuid]
version = "1.11"
features = ["serde"]

[dev-dependencies.tokio]
version = "1.50.0"
features = ["full"]