wrym 0.1.0

Cross-platform, lightweight networking
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 = "wrym"
version = "0.1.0"
authors = ["wick3dr0se <wick3dr0se@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform, lightweight networking"
readme = "README.md"
keywords = [
    "networking",
    "gamedev",
    "udp",
    "tcp",
    "webtransport",
]
categories = [
    "network-programming",
    "game-development",
]
license = "AGPL-3.0"
repository = "https://github.com/wick3dr0se/wrym"
resolver = "2"

[features]
default = ["tcp"]
laminar = ["dep:wrym_laminar"]
tcp = ["dep:wrym_tcp"]
udp = ["dep:wrym_udp"]

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

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

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

[dependencies.cfg-if]
version = "1.0.0"

[dependencies.wrym_laminar]
version = "0.1.0"
optional = true

[dependencies.wrym_tcp]
version = "0.1.0"
optional = true

[dependencies.wrym_transport]
version = "0.1.0"

[dependencies.wrym_udp]
version = "0.1.0"
optional = true

[dev-dependencies.bincode]
version = "1.3.3"