mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-04 21:17:44 +00:00
14 lines
483 B
Rust
Executable File
14 lines
483 B
Rust
Executable File
pub mod common;
|
|
pub mod protos;
|
|
pub mod streaming;
|
|
|
|
#[cfg(all(not(feature = "sdk-parse-borsh"), not(feature = "sdk-parse-zero-copy")))]
|
|
compile_error!("Enable one SDK parser backend: sdk-parse-borsh or sdk-parse-zero-copy.");
|
|
|
|
pub use sol_parser_sdk as parser_sdk;
|
|
pub use streaming::sdk_bridge;
|
|
pub use streaming::{
|
|
fetch_rpc_transaction_as_streamer_events, fetch_rpc_transaction_as_streamer_events_async,
|
|
parse_encoded_rpc_transaction_as_streamer_events, RpcParseError,
|
|
};
|