ai-usagebar 0.7.1

Waybar widget + TUI for AI plan usage across Anthropic, OpenAI, Z.AI, OpenRouter, and DeepSeek
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Anthropic vendor — OAuth-based plan usage via the undocumented
//! `https://api.anthropic.com/api/oauth/usage` endpoint.
//!
//! Mirrors `~/Projects/claudebar/claudebar` line-for-line; see individual
//! submodule headers for the bash references.

pub mod creds;
pub mod fetch;
#[cfg(target_os = "macos")]
pub mod keychain;
pub mod oauth;
pub mod types;

pub use fetch::{FetchOutcome, fetch_snapshot};