streamdown-config-0.1.0 has been yanked.
Streamdown Config
This crate handles configuration loading and management for streamdown, supporting TOML configuration files.
Overview
Configuration is loaded from platform-specific locations:
- Linux:
~/.config/streamdown/config.toml - macOS:
~/Library/Application Support/streamdown/config.toml - Windows:
%APPDATA%\streamdown\config.toml
Example
use streamdown_config::Config;
// Load config with defaults
let config = Config::load().unwrap();
// Or load with an override file
let config = Config::load_with_override(Some("./custom.toml".as_ref())).unwrap();