pubky-testnet 0.5.2

A local test network for Pubky Core development.
1
2
3
4
5
6
7
8
9
10
11
12
// Actual testnet exposed in the library
mod ephemeral_testnet;
mod static_testnet;
mod testnet;
pub use ephemeral_testnet::EphemeralTestnet;
pub use static_testnet::StaticTestnet;
pub use testnet::Testnet;

// Re-export the core crates
pub use pubky;
pub use pubky_common;
pub use pubky_homeserver;