| Crates.io | tesser-config |
| lib.rs | tesser-config |
| version | 0.9.3 |
| created_at | 2025-11-19 03:45:13.593599+00 |
| updated_at | 2025-12-04 04:48:26.367763+00 |
| description | Configuration loading and typed settings for Tesser components |
| homepage | |
| repository | https://github.com/tesserspace/tesser |
| max_upload_size | |
| id | 1939375 |
| size | 29,913 |
Layered configuration loader shared by every binary in the workspace.
config crate to merge config/default.toml, config/{env}.toml, config/local.toml, and TESSER_* environment variables.AppConfig, ExchangeConfig, LiveRuntimeConfig, etc.) consumed by tesser-cli and other binaries.let cfg = tesser_config::load_config(Some("default"))?;
println!("Data path: {}", cfg.data_path.display());
cargo test -p tesser-config