//! Shared core for Pocket Relay client
//!
//! This library handles creating and running the local servers required
//! for connecting to Pocket Relay servers.
//!
//! It provides shared backend for the different variants to make it easier
//! to keep feature parody across versions
//!
//! [`PocketRelay`]: https://pocket-relay.pages.dev/
// Re-exports for dependencies
pub use reqwest;
pub use Version;
pub use Url;
/// Version constant for the backend
pub const SHARED_BACKEND_VERSION: &str = env!;
/// The minimum server version supported by this client
pub const MIN_SERVER_VERSION: Version = new;