tuioxide 0.3.1

A Rust implementation of the TUIO 1.1 and TUIO 2.0 protocols, providing both client and server components for sending and receiving multitouch and tangible object data over OSC.
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 = "tuioxide"
version = "0.3.1"
authors = ["Erich Querner"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the TUIO 1.1 and TUIO 2.0 protocols, providing both client and server components for sending and receiving multitouch and tangible object data over OSC."
readme = "README.md"
keywords = [
    "tuio",
    "osc",
    "tangible",
    "touch",
    "multitouch",
]
categories = [
    "network-programming",
    "multimedia",
]
license = "MIT"
repository = "https://github.com/eqbic/tuioxide"

[features]
default = []
websocket = ["dep:tungstenite"]

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

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

[[example]]
name = "receive_tuio_11_websocket"
path = "examples/receive_tuio_11_websocket.rs"
required-features = ["websocket"]

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

[[example]]
name = "receive_tuio_20_websocket"
path = "examples/receive_tuio_20_websocket.rs"
required-features = ["websocket"]

[dependencies.log]
version = "0.4"

[dependencies.rosc]
version = "~0.11"

[dependencies.thiserror]
version = "~2.0"

[dependencies.tungstenite]
version = "0.27"
optional = true