heddle-client 0.8.0

Heddle hosted-backend client: auth, support, presence, the gRPC client wrappers, and the global credential store.
Documentation
//! Typed requests for `heddle auth` handlers.

#[derive(Clone, Debug)]
pub enum AuthCommand {
    Login {
        server: String,
        no_browser: bool,
    },
    Logout {
        server: Option<String>,
    },
    Status {
        server: Option<String>,
    },
    CreateServiceToken {
        name: String,
        namespace: String,
        server: Option<String>,
    },
}