pubsub-bus 3.1.0

Thread-safe one-to-many publish-subscribe event system. Simple and easy to use. It just works (hopefully).
Documentation
// *************************************************************************
//
// Copyright (c) 2025 Andrei Gramakov. All rights reserved.
//
// This file is licensed under the terms of the MIT license.
// For a copy, see: https://opensource.org/licenses/MIT
//
// site:    https://agramakov.me
// e-mail:  mail@agramakov.me
//
// *************************************************************************
mod event_bus;
mod event_bus_internal;
mod bus_event;
mod publisher;
mod subscriber;

pub use event_bus::EventBus;
pub use bus_event::BusEvent;
pub use publisher::{EventEmitter, Publisher};
pub use subscriber::Subscriber;