raknet-rust 0.2.0

Asynchronous, high-performance RakNet transport library for Rust.
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"
rust-version = "1.85"
name = "raknet-rust"
version = "0.2.0"
authors = ["ClexaGod"]
build = false
include = [
    "Cargo.toml",
    "README.md",
    "LICENSE*",
    "src/**",
    "examples/**",
    "tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Asynchronous, high-performance RakNet transport library for Rust."
homepage = "https://github.com/mcbe-rs/raknet-rust"
documentation = "https://docs.rs/raknet-rust/latest/raknet_rust/"
readme = "README.md"
keywords = [
    "raknet",
    "udp",
    "tokio",
    "async",
    "game-networking",
]
categories = [
    "network-programming",
    "asynchronous",
    "game-development",
]
license = "Apache-2.0"
repository = "https://github.com/mcbe-rs/raknet-rust"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

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

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

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

[[test]]
name = "client_facade_integration"
path = "tests/client_facade_integration.rs"

[[test]]
name = "connection_async_io_integration"
path = "tests/connection_async_io_integration.rs"

[[test]]
name = "ipv_stack_integration"
path = "tests/ipv_stack_integration.rs"

[[test]]
name = "listener_compat_integration"
path = "tests/listener_compat_integration.rs"

[[test]]
name = "property_fuzz_smoke"
path = "tests/property_fuzz_smoke.rs"

[[test]]
name = "proxy_relay_integration"
path = "tests/proxy_relay_integration.rs"

[[test]]
name = "server_facade_callbacks_integration"
path = "tests/server_facade_callbacks_integration.rs"

[[test]]
name = "server_facade_integration"
path = "tests/server_facade_integration.rs"

[[test]]
name = "session_integration"
path = "tests/session_integration.rs"

[[test]]
name = "session_soak_smoke"
path = "tests/session_soak_smoke.rs"

[dependencies.ahash]
version = "0.8"

[dependencies.bitflags]
version = "2.6"

[dependencies.bytes]
version = "1.8"

[dependencies.dashmap]
version = "6.1"

[dependencies.getrandom]
version = "0.2"

[dependencies.hmac]
version = "0.12"

[dependencies.libc]
version = "0.2"

[dependencies.parking_lot]
version = "0.12"

[dependencies.sha2]
version = "0.10"

[dependencies.socket2]
version = "0.6"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.tracing]
version = "0.1"

[dependencies.zeroize]
version = "1.8"

[dev-dependencies.proptest]
version = "1.6"