pipestreamr 0.4.0

Rust SDK and CLI for the PipeStreamr unified events API
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("HTTP request failed: {0}")]
    Http(#[from] reqwest::Error),

    #[error("API error ({status}): {message}")]
    Api { status: u16, message: String },

    #[error("Missing API key — set PIPESTREAMR_API_KEY or pass --api-key")]
    MissingApiKey,
}