| Crates.io | mabi-opcua |
| lib.rs | mabi-opcua |
| version | 1.0.2 |
| created_at | 2026-01-25 07:25:02.153791+00 |
| updated_at | 2026-01-25 09:50:23.292885+00 |
| description | Mabinogion - OPC UA server simulator |
| homepage | https://github.com/seadonggyun4/mabinogion |
| repository | https://github.com/seadonggyun4/mabinogion |
| max_upload_size | |
| id | 2068325 |
| size | 576,424 |
OPC UA server simulator for the Mabinogion industrial protocol simulator.
Full-featured OPC UA server simulator with support for subscriptions, historical data, and security.
use mabi_opcua::prelude::*;
// Create an OPC UA server
let config = OpcUaServerConfig::builder()
.port(4840)
.endpoint_path("/")
.build()?;
let server = OpcUaServer::new(config);
server.start().await?;
Licensed under the Apache License, Version 2.0.