solana_geyser_plugin_manager/
lib.rs1#![cfg_attr(
2 not(feature = "agave-unstable-api"),
3 deprecated(
4 since = "3.1.0",
5 note = "This crate has been marked for formal inclusion in the Agave Unstable API. From \
6 v4.0.0 onward, the `agave-unstable-api` crate feature must be specified to \
7 acknowledge use of an interface that may break without warning."
8 )
9)]
10pub mod accounts_update_notifier;
11pub mod block_metadata_notifier;
12pub mod block_metadata_notifier_interface;
13pub mod entry_notifier;
14pub mod geyser_plugin_manager;
15pub mod geyser_plugin_service;
16pub mod slot_status_notifier;
17pub mod slot_status_observer;
18pub mod transaction_notifier;
19
20pub use geyser_plugin_manager::GeyserPluginManagerRequest;