open-dis-rust

Crates.ioopen-dis-rust
lib.rsopen-dis-rust
version0.1.0
sourcesrc
created_at2023-10-27 17:35:36.342103
updated_at2024-10-26 06:27:51.998323
descriptionA Rust implementation of the IEEE 1278.1-2012 DIS Standard.
homepage
repositoryhttps://github.com/crhowell3/open-dis-rust
max_upload_size
id1016271
size955,373
Cameron (crhowell3)

documentation

README

🦀 Open DIS Rust

Stargazers Crates.io Version Issues Contributors
Documentation Maintained

 

💭 About

Rust implementation of the IEEE 1278.1-2012 Distributed Interactive Simulation (DIS) application protocol. This library was implemented according to the IEEE Std 1278.1-2012 publication as well as SISO-REF-010-2023.

📕 Documentation

The documentation for the latest version of this library can be found here. All previously published versions of this package can be found on crates.io, and each version's respective documentation is accessible from there as well.

🔰 Getting Started

Installation

This library can be installed using cargo:

cargo add open-dis-rust

or by adding this to your project's Cargo.toml [dependencies] section:

open-dis-rust = "<insert version>"

Examples

This package contains some examples for transmitting PDUs via UDP. To run the example, both the client and the server applications need to be executed. Start by running the server as follows:

cargo run --example udp_server

Then, in another terminal on the same machine, run the client as follows:

cargo run --example udp_client

An Acknowledge PDU will be transmitted from the client to the server, and then the data within the PDU will be echoed back to the client and displayed in the terminal.

Copyright © 2023-present Cameron Howell

Commit count: 34

cargo fmt