* Create solana-poh crate * Move BigTableUploadService to solana-ledger * Add solana-rpc to workspace * Move dependencies to solana-rpc * Move remaining rpc modules to solana-rpc * Single use statement solana-poh * Single use statement solana-rpc
11 lines
173 B
Rust
11 lines
173 B
Rust
#![allow(clippy::integer_arithmetic)]
|
|
pub mod poh_recorder;
|
|
pub mod poh_service;
|
|
|
|
#[macro_use]
|
|
extern crate solana_metrics;
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate matches;
|